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)
};
文章標籤
全站熱搜
