CellTemplate不是依赖属性,不能绑定DynamicResource

前端之家收集整理的这篇文章主要介绍了CellTemplate不是依赖属性,不能绑定DynamicResource前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
自己在DataGrid行末添加按钮时遇到了这样的问题,设计的时候DataGrid中显示是有按钮存在的,但是一运行按钮就不见了,试验了好几次都是这样子,经过ktei2008老师的指点才知道问题所在,我当时的代码是这样写的:
                  <DataGrid.Columns>
    			<DataGridTextColumn Binding="{Binding Property1}" Header="Property1"/>
    			<DataGridCheckBoxColumn Binding="{Binding Property2}" Header="Property2"/>
    			<DataGridTemplateColumn Header="功能" CellTemplate="{DynamicResource DataTemplate1}"/>
    		</DataGrid.Columns>


Header为功能的那一列是我要添加的按钮,用的CellTemplate模板,事实上,正如我标题中所写,CellTemplate不是依赖属性,不能绑定DynamicResource,最后的代码是这个样子的:

                  <DataGrid.Columns>
    			<DataGridTextColumn Binding="{Binding Property1}" Header="Property1"/>
    			<DataGridCheckBoxColumn Binding="{Binding Property2}" Header="Property2"/>
    			<DataGridTemplateColumn Header="功能" CellTemplate="{StaticResource DataTemplate1}"/>
    		</DataGrid.Columns>
原文链接:https://www.f2er.com/javaschema/287077.html

猜你在找的设计模式相关文章