使用描述的方法here我正在尝试动态构建DataTemplate列。 我在定义自己的转换器时遇到了问题。 第一个问题是定义我自己的程序名称空间,因为我收到此错误:
找不到类型'RowIndexConverter',因为'clr-namespace:LANOS.Models;未找到assembly = LANOS'。
根据我的应用程序所基于的解决方案,任何用户定义的名称空间也需要程序集名称。 RowIndexConverter
肯定属于LANOS.Models
,没有拼写错误。类属于应用程序的主要组件(换句话说它不是外部的)。那么为什么会出现问题?
第二个问题是我不确定使用这种技术我的转换器定义是否合适。
我希望得到相同的UserControl.Resources
:
<navigation:Page xmlns:toolkit="http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit" x:Class="LANOS.Views.SRFEditor"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk"
xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"
xmlns:model="clr-namespace:LANOS.Models"
mc:Ignorable="d"
d:DesignWidth="640" d:DesignHeight="480"
Title="SRFEditotr Page">
<UserControl.Resources>
<model:RowIndexConverter x:Key="rowIndexConverter"/>
<DataTemplate x:Key="myCellTemplate">
<TextBlock Text='{Binding Data, Mode=TwoWay, Converter={StaticResource rowIndexConverter}}' />
</DataTemplate>
</UserControl.Resources>
功能代码。
private string GenerateTextColumnXAML(string sortMemberKey)
{
StringBuilder CellTemp = new StringBuilder();
CellTemp.Append("<DataTemplate ");
CellTemp.Append("xmlns='http://schemas.microsoft.com/winfx/");
CellTemp.Append("2006/xaml/presentation' ");
CellTemp.Append("xmlns:model='clr-namespace:LANOS.Models; assembly=LANOS' ");
CellTemp.Append("xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml' ");
CellTemp.Append("xmlns:basics='clr-namespace:System.Windows.Controls;");
CellTemp.Append("assembly=System.Windows.Controls' >");
CellTemp.Append("<Grid>");
CellTemp.Append("<Grid.Resources>");
CellTemp.Append("<model:RowIndexConverter x:Key='rowIndexConverter' />");
CellTemp.Append("</Grid.Resources>");
CellTemp.Append("<TextBlock Text='{Binding Data, Mode=TwoWay, Converter={StaticResource rowIndexConverter}, ConverterParameter=" + sortMemberKey + "}' />");
CellTemp.Append("</Grid>");
CellTemp.Append("</DataTemplate>");
return CellTemp.ToString();
}
功能结果:
<DataTemplate
xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation'
xmlns:model='clr-namespace:LANOS.Models; assembly=LANOS'
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'
xmlns:basics='clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls' >
<Grid>
<Grid.Resources><model:RowIndexConverter x:Key='rowIndexConverter' />
</Grid.Resources><TextBlock Text='{Binding Data, Mode=TwoWay, Converter={StaticResource rowIndexConverter}, ConverterParameter=GRID_ROW_ID}' />
</Grid>
</DataTemplate>
答案 0 :(得分:1)
我认为问题出在这一行
CellTemp.Append("xmlns:model='clr-namespace:LANOS.Models; assembly=LANOS' ");
尝试删除assembly
之前的空格,即:
CellTemp.Append("xmlns:model='clr-namespace:LANOS.Models;assembly=LANOS' ");
(是的,我真的要求你做一些像删除单个空间那样微不足道的事情!我很惊讶这有所不同。我能够用空间重现错误,但它没有工作。)< / p>
关于你的第二个问题,我没有看到使用转换器的问题。我之前做过很多相同的事情。