gpt4 book ai didi

c# - 如何将我的用户控件内容控件中的属性绑定(bind)到我的 View 模型中的属性?

转载 作者:行者123 更新时间:2023-12-03 11:00:38 28 4
gpt4 key购买 nike

我有一个这样的用户控件:

<UserControl x:Class="MySample.customtextbox"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="20" d:DesignWidth="300">
<Grid>
<TextBox x:Name="Ytextbox" Background="Yellow"/>
</Grid>
</UserControl>

我想在诸如 MainWindowView 之类的 View 中使用此控件
如何将我的 Ytextbox 文本属性绑定(bind)到 MainWindowViewModel 中的属性?
<CT:customtextbox  Text="{binding  mypropertyinviewmodel}"/>

我知道我必须定义一个 DependencyProperty对于我的控件,直到我可以将我的 View 模型中的属性绑定(bind)到它,所以我为我的控件定义了一个依赖属性,如下所示:
public static readonly DependencyProperty InfoTextProperty = 
DependencyProperty.Register("InfoText", typeof(string), typeof(customtextbox), new FrameworkPropertyMetadata(false));

public string InfoText
{
get { return (string)GetValue(InfoTextProperty);}
set
{
SetValue(InfoTextProperty, value);
}
}

当我为控件定义依赖属性时,出现 xaml 错误:

Error 1 Cannot create an instance of "customtextbox".

最佳答案

new FrameworkPropertyMetadata(false)

您不能设置 string 的默认值属性(property)给 false (当然是 bool )。

可能还有一些其他问题(例如,您在用户控制声明中对 TextBox 没有绑定(bind),并且您尝试设置未在创建实例的位置注册的属性),但对于那些您应该搜索 SO。

关于c# - 如何将我的用户控件内容控件中的属性绑定(bind)到我的 View 模型中的属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7953437/

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