gpt4 book ai didi

c# - CheckBox 呈现为 Label

转载 作者:太空宇宙 更新时间:2023-11-03 12:47:12 25 4
gpt4 key购买 nike

我有一个动态生成的 ListView,它使用数据绑定(bind)允许通过 CheckBox 编辑一些 Boolean 值。我使用 IValueConverter 生成 ListView 的列(如 this 答案):

public object Convert (object Value, Type EntryType, object Parameter, System.Globalization.CultureInfo Culture)
{
var Config = Value as ColumnConfig;
if (Config != null)
{
var GridView = new GridView ();
Binding NameBinding = new Binding ("Name");
GridViewColumn BaseColumn = new GridViewColumn { Header = "Settings",
DisplayMemberBinding = NameBinding,
Width = 125,
CellTemplate = new DataTemplate ()};
GridView.Columns.Add (BaseColumn);

foreach (Column CurrentColumn in Config.Columns)
{
Binding NewBinding = new Binding (CurrentColumn.DataField);
FrameworkElementFactory FEF = new FrameworkElementFactory (typeof (CheckBox));
FEF.SetBinding (CheckBox.IsCheckedProperty, NewBinding);

GridViewColumn GVColumn = new GridViewColumn
{
Header = CurrentColumn.Header,
DisplayMemberBinding = NewBinding
};
var DTemplate = new DataTemplate ();
DTemplate.VisualTree = FEF;

GVColumn.CellTemplate = DTemplate;

GridView.Columns.Add (GVColumn);
}

return GridView;
}

return Binding.DoNothing;
}

在 XAML 中这样使用:

<ListView Margin="2" ItemContainerStyle="{StaticResource LineHighlightListView}"
ItemsSource="{Binding InMatrixList}"
View="{Binding InMatrixColumns, Converter={StaticResource ConvertItemsToDynamicGridView}}" />

列的标题是在别处生成的。该代码应采用 ColumnConfig 项目,并创建 GridViewColumn 对象,这些对象具有 ChechBox 数据绑定(bind)到其他地方的其他值。但是,我得到的只是用文本代替复选框的列。文本正确,因此数据绑定(bind)有效,但 FrameworkElementFactory 对象未按预期工作。

为什么复选框呈现/转换为文本框?

最佳答案

规则:避免动态组合模板的方式

我遇到了类似的问题,我是这样解决的:

    //see: http://www.codeproject.com/Articles/444371/Creating-WPF-Data-Templates-in-Code-The-Right-Way
private static DataTemplate CreateTemplate(UniprogCellVM cell)
{
var tcell = cell.GetType();

var sb = new StringBuilder();
sb.AppendFormat("<DataTemplate DataType=\"{{x:Type local:{0}}}\">", tcell.Name);
sb.Append("<local:UniprogCellControl ");
sb.Append("Content=\"{Binding Path=.}\" ");
sb.Append("Header=\"{Binding Path=.}\" ");
sb.AppendFormat("Style=\"{{DynamicResource Root{0}BoxStyleKey}}\" ", cell.Interaction);
sb.Append(">");

sb.Append("</local:UniprogCellControl>");
sb.Append("</DataTemplate>");

var context = new ParserContext();

context.XamlTypeMapper = new XamlTypeMapper(new string[0]);
context.XamlTypeMapper.AddMappingProcessingInstruction("local", tcell.Namespace, tcell.Assembly.FullName);

context.XmlnsDictionary.Add("", "http://schemas.microsoft.com/winfx/2006/xaml/presentation");
context.XmlnsDictionary.Add("x", "http://schemas.microsoft.com/winfx/2006/xaml");
context.XmlnsDictionary.Add("local", "local");

var template = (DataTemplate)XamlReader.Parse(sb.ToString(), context);
return template;
}

基本上,您应该为模板编写一个完全有效的 XAML,然后使用解析器对其进行解析。

由于文本合成是一项微不足道的任务,您可以在创建函数中传递任何参数(如我上面的示例)。

最后一点:这种方法很有用,但需要计算量,因为运行时解析和编译。避免以这种方式创建大量项目。

关于c# - CheckBox 呈现为 Label,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36866586/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com