我在类中有静态属性,我需要将其设置为TreeView控件的ItemSource。
有些事情是这样的:
<TreeView x:Name="SegTreeView" Margin="199,55,240,0" VerticalAlignment="Top" Height="88"
ItemsSource="{x:Static local:STestFrameControl._sObserverList}">
当我运行我的应用程序时,我得到此运行时异常:
无法将属性'ItemsSource'中的值转换为'System.Windows.Markup.StaticExtension'类型的对象。标记文件'DClient; component / stestframecontrol.xaml'中的对象'SegmTreeView'出错'第61行位置99。
尝试此解决方案:Binding to static property
没有任何帮助。
提前谢谢, Evyatar