WPF编程中xmlns:local的命名空间到底应该怎么引用呐?
是这样的,我正在动态生成一个DataTemplate,里面用了一个自定义控件“TriButton”,结果搞不定;如果将“TriButton”换成系统自带的“Button控...
是这样的,我正在动态生成一个DataTemplate,里面用了一个自定义控件“TriButton”,结果搞不定;
如果将“TriButton”换成系统自带的“Button控件”就没问题。。。
想来想去应该是这个"local"的命名控件没写对,请问应该怎么解呀?
代码如下:
XNamespace ns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation";
XNamespace local = "local";
XElement xDataTemplate = new XElement(ns + "DataTemplate",
new XAttribute("xmlns:x", "http://schemas.microsoft.com/winfx/2006/xaml"),
new XAttribute("xmlns:mc","http://schemas.openxmlformats.org/markup-compatibility/2006" ),
new XAttribute("xmlns:d","http://schemas.microsoft.com/expression/blend/2008" ),
new XAttribute("xmlns:local", "clr-namespace:SimControl"),
new XElement(local+"TriButton", new XAttribute("Width", "20")));
XmlReader xr = xDataTemplate.CreateReader();
DataTemplate dataTemplate = XamlReader.Load(xr) as DataTemplate; 展开
如果将“TriButton”换成系统自带的“Button控件”就没问题。。。
想来想去应该是这个"local"的命名控件没写对,请问应该怎么解呀?
代码如下:
XNamespace ns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation";
XNamespace local = "local";
XElement xDataTemplate = new XElement(ns + "DataTemplate",
new XAttribute("xmlns:x", "http://schemas.microsoft.com/winfx/2006/xaml"),
new XAttribute("xmlns:mc","http://schemas.openxmlformats.org/markup-compatibility/2006" ),
new XAttribute("xmlns:d","http://schemas.microsoft.com/expression/blend/2008" ),
new XAttribute("xmlns:local", "clr-namespace:SimControl"),
new XElement(local+"TriButton", new XAttribute("Width", "20")));
XmlReader xr = xDataTemplate.CreateReader();
DataTemplate dataTemplate = XamlReader.Load(xr) as DataTemplate; 展开
1个回答
2014-03-30
展开全部
xmlns:local="clr-namespace:所引用资源的完整命名空间"
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询