- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想创建一个自定义控件来简化以下代码:
<StackPanel>
<DockPanel LastChildFill="True">
<Label>First Name</Label>
<TextBox Margin="2" Text="{Binding Path=FirstName}"></TextBox>
</DockPanel>
<DockPanel LastChildFill="True">
<Label>Last Name</Label>
<TextBox Margin="2" Text="{Binding Path=LastName}"></TextBox>
</DockPanel>
</StackPanel>
我的想法是制作一个如下所示的 UserControl
,(布局有点不同,但超出范围):
<UserControl x:Class="LabelControl"
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="300" d:DesignWidth="300">
<DockPanel LastChildFill="True">
<Label Content="{Binding Path=Text}" Margin="2" MinWidth="100" HorizontalContentAlignment="Right"></Label>
<Grid Margin="2">
<ContentControl Content="{Binding Path=Control}" ></ContentControl>
</Grid>
</DockPanel>
</UserControl>
后面的代码公开了 2 个依赖属性:
ContentProperty
属性将子项映射到 ContentControl
。因此允许我简化我的 StackPanel
:
<StackPanel>
<controls:LabelControl Text="First Name">
<TextBox Text="{Binding Path=FirstName}"></TextBox>
</controls:LabelControl>
<controls:LabelControl Text="Last Name">
<TextBox Text="{Binding Path=LastName}"></TextBox>
</controls:LabelControl>
</StackPanel>
我遇到的问题是控件中的绑定(bind)没有映射。有没有办法解决? Label Controls DataContext 正在覆盖父控件上下文。
这是 LabelControl 背后的代码:
[ContentProperty("Control")]
public partial class LabelControl : UserControl
{
public static readonly DependencyProperty TextProperty = DependencyProperty.Register(
"Text", typeof(string), typeof(LabelControl), new PropertyMetadata(default(string)));
public string Text
{
get { return (string)GetValue(TextProperty); }
set { SetValue(TextProperty, value); }
}
public static readonly DependencyProperty ControlProperty =
DependencyProperty.Register("Control", typeof(Control), typeof(LabelControl), new PropertyMetadata(default(Control)));
public Control Control
{
get { return (Control)GetValue(ControlProperty); }
set { SetValue(ControlProperty, value); }
}
public LabelControl()
{
InitializeComponent();
this.DataContext = this;
}
}
编辑:输出确认数据上下文被覆盖。
BindingExpression path error: 'FirstName' property not found on 'object' ''LabelControl' (Name='')'. BindingExpression:Path=FirstName; DataItem='LabelControl' (Name=''); target element is 'TextBox' (Name=''); target property is 'Text' (type 'String')
最佳答案
如果您的 LabelControl
包含在 Window
中并且它的 DataContext
具有 FirstName
,请尝试像这样更改您的绑定(bind)属性(property)。
<TextBox Text="{Binding Path=FirstName,
RelativeSource={RelativeSource AncestorType=Window}}">
</TextBox>
如果您不想每次都指定 RelativeSource
,您可以像现在一样使用您的 LabelControl
...
<StackPanel>
<controls:LabelControl Text="First Name">
<TextBox Text="{Binding Path=FirstName}"></TextBox>
</controls:LabelControl>
<controls:LabelControl Text="Last Name">
<TextBox Text="{Binding Path=LastName}"></TextBox>
</controls:LabelControl>
</StackPanel>
...并改为更改 LabelControl
的实现。
首先,从 LabelControl
的代码隐藏中松开 DataContext
分配。
public LabelControl()
{
InitializeComponent();
//this.DataContext = this; // we don't want this
}
然后将 XAML 模板更改为
<DockPanel LastChildFill="True">
<Label Content="{Binding Path=Text,
RelativeSource={RelativeSource FindAncestor, AncestorType=UserControl}}"
Margin="2" MinWidth="100" HorizontalContentAlignment="Right">
</Label>
<Grid Margin="2">
<ContentControl
Content="{Binding Path=Control,
RelativeSource={RelativeSource FindAncestor, AncestorType=UserControl}}">
</ContentControl>
</Grid>
</DockPanel>
现在您应该正确设置了 DataContext
。
关于c# - 使用 ContentProperty 的 DataContext 直通,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28397267/
我在我的项目中添加了一个 LinqToSQL 类并将它放在我的 App_code 文件夹中。 然后,我将 LinqDataSource 添加到新网页并尝试将其配置为使用此类,但它并未在 DataCon
在我的带有 EF6 的 MVC 5 应用程序中开始使用接口(interface)和 Ninject 并遇到了问题。 我调用多个实现来获取数据,当保存它时,实体断开连接并且存在多对多和类似问题。 所以我
因此,我在我的 View 模型中保留了一个对象 NewMyItem 作为负责在列表中添加新项目的控件的 DataContext。每当执行 AddCommand 时,我都会重置该对象,以便它可以添加另一
这个问题与我之前在这里的问题有关:Predicate won't validate parameter correctly 首先是关于我的模型的一些信息: 基础 View 模型: public abs
我正在尝试使用数据绑定(bind)将 ObservableCollection 绑定(bind)到 DataGrid 的 ItemsSource,因为我了解了 WPF 和其他东西。 在代码隐藏中,我可
使用 Linq-to-Sql 时,Visual Studio 会为您创建一个 DataContext 类。我想知道什么时候实例化这个上下文,在我的一个项目中,我使用了一个 DataContext 实例
我有一个包含控件的窗口。 该控件有一个设置为 DataContext 对象的 View 模型。 Window 对象有自己的 ViewModel 设置为 DataContext。 如果我在 Window
您好,我正在尝试制作一个带有 PathData 的自定义按钮。到目前为止,我已经设法查看了其中的路径。但是我的 Button 没有接受 MVVM 命令。 自定义按钮 XAML
我对MVVM特别陌生。 我有以下XAML代码:
我在使用 linq to sql 进行 asp.net c# Web 应用程序的 DataContexts 时遇到一些问题。 我首先遇到了抛出异常的问题,因为我没有处理 DataContext,与 t
作为问题的延续Linking DataContext with another property in WPF . 在研究的最后,我非常惊讶地发现,当有人写下这样的东西时: Content 属性所绑
这应该很容易,但它会引发 VS2008 的严重循环。 我正在尝试使用 MVVM 的 WPF,尽管我已经开发了大约 15 年,并且有一个比较,但我还是一个新手。科学。程度。在当前客户端,我需要使用 VB
我在这样的后台线程中为 wpf 窗口获取数据 [framework 4.0 with async/await]: async void refresh() { // returns objec
当心,这是一个相当基本的问题(我认为)。 我有一个名为 MyUserControl 的 UserControl。我在我的 ListBox 的 DataTemplate 中使用它: 现在我想在 MyU
我有一个应用程序需要将来自多个数据库的表连接到单个 LINQ-to-SQL 查询中。不幸的是,我为每个数据库设置了一个单独的 DataContext 类,因此该查询将不起作用。我收到这样的错误:“查询
是否可以通过 XAML 将一些数据传递到绑定(bind)源/数据上下文? 在我的特定情况下,我希望为绑定(bind)源提供对创建它的窗口的引用。 例如:
我一直在查看 MSDN 文章 WPF Apps With The Model-View-ViewModel Design Pattern . 上面的文章展示了他是如何使用DataTemplate 来显
我使用 VS 2008 中的 ORM 设计了我的数据库。 将其导出到 SQL Server 以便在 SQL Server 上创建表和关系的最佳方法是什么? 谢谢, 京东 最佳答案 如果您使用的是 LI
我在 C#、WPF 中有以下代码: base.DataContext = new DataTemplate[] { new Da
我有一个以这种方式在父控件中使用的 UserControl: 父控件 DataContext 是一个包含 SelectedEntity 属性的 ViewModel。 在我的子 UserControl
我是一名优秀的程序员,十分优秀!