FrameworkElementFactory wrapElement = new FrameworkElementFactory(typeof(WrapPanel)); ItemsPanelTemplate itemPanelDataTemplate = new ItemsPanelTemplate(wrapElement); itemPanelDataTemplate.VisualTree = wrapElement; myListbox = new ListBox() { Opacity = 1, Visibility = System.Windows.Visibility.Visible, Height = double.NaN, Width = double.NaN, ItemsPanel = itemPanelDataTemplate, Background = null, Foreground = null, BorderBrush = null, VerticalAlignment = VerticalAlignment.Bottom, HorizontalAlignment = HorizontalAlignment.Center, Margin = new Thickness(0, 0, 30, 0) };
全站熱搜
留言列表