2

我正在尝试为列表框动态创建数据模板。这是一个自定义用户控件。此 UserControl 有一个DependencyProperty,它接受任何类型的IEnumerable<>

这工作正常......但输出总是

  • 适当的价值
  • 适当的价值

如果对象包含 2 个属性。但我希望这些属性并排排列。像:

对象 1:

  • 财产/价值财产/价值

对象 2:

  • 财产/价值财产/价值

那么我哪里错了?我首先制作一个 Stackpanel,然后在 Stackpanel 中制作包含标签的 Dockpanels。

这是一个小预览它现在的样子。在此处输入图像描述

所以这是我创建数据模板的代码:

    DataTemplate _NewData = new DataTemplate();
    FrameworkElementFactory _template = new FrameworkElementFactory(typeof(StackPanel));

                foreach (var _FProperty in view.CurrentItem.GetType().GetProperties())
                {
                    FrameworkElementFactory _firstTemplateChild = new FrameworkElementFactory(typeof(DockPanel));

                    FrameworkElementFactory _childOneForDock = new FrameworkElementFactory(typeof(Label));

                    _childOneForDock.SetValue(Label.ContentProperty, _FProperty.Name);
                    _firstTemplateChild.AppendChild(_childOneForDock);
                    FrameworkElementFactory _childTwoForChild = new FrameworkElementFactory(typeof(Label));
                    _childTwoForChild.SetBinding(Label.ContentProperty, new Binding(_FProperty.Name));
                    _firstTemplateChild.AppendChild(_childTwoForChild);
                    _template.AppendChild(_firstTemplateChild);
                }
                _NewData.VisualTree = _template;
                ListBoxInPopUp.ItemTemplate = _NewData;
4

1 回答 1

2

a 的默认方向StackPanel是垂直的。

您需要将方向设置为水平,以使内容并排显示。

MSDN的代码示例中,它指出:

<!-- The items under this StackPanel are stacked Vertically. Note that Orientation 
     has a default value of "Vertical" but in this example the property is explicitely
     set for clarity. -->

(拼写错误都是他们的)

此外,该DockPanel.Dock属性的默认值是 Left,但我不确定这是否是这种情况下的一个因素。

来源

于 2011-01-24T22:57:13.980 回答