WPF 绑定在自定义用户控件上不起作用
本文关键字:控件 不起作用 用户 自定义 绑定 WPF | 更新日期: 2023-09-27 18:34:05
我已经为此苦苦挣扎了三天,我觉得我非常接近解决方案,但我就是无法到达那里。
我正在制作一个数独拼图,我想创建一个自定义控件来显示九个 3x3 网格之一,所以我显示其中九个并拥有一个漂亮的 9x9 网格。
我找到了至少 30 个不同的页面,应该解释如何创建它,但我无法在每个页面上找到解决方案。
我认为问题出在PartialSudokuGrid
,因为Values
属性似乎没有被调用。此外,输出窗口中不会显示任何错误。谁能告诉我我做错了什么?
无意转储代码并期望有人修复它,但我真的被困在这一点上,我觉得这只是一个小小的改变,就可以让一切正常。
这是我的代码:
主窗口:
<Window x:Class="SudokuWPF.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:SudokuWPF"
Title="MainWindow" Height="400" Width="400"
DataContext="{Binding PartialSudokuGrid, Source={StaticResource Locator}}">
<UniformGrid Columns="3" Rows="3">
<local:PartialSudokuGrid Values="{Binding ValuesVM}" />
</UniformGrid>
</Window>
视图模型:
public class PartialSudokuGridVM : ViewModelBase {
private int[] _values;
public PartialSudokuGridVM() {
this.ValuesVM = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
}
public int[] ValuesVM {
get {
return this._values;
}
set {
this._values = value;
this.RaisePropertyChanged();
}
}
}
用户控件:
<UserControl x:Class="SudokuWPF.PartialSudokuGrid"
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"
DataContext="{Binding RelativeSource={RelativeSource Self}, Path=Values}">
<UniformGrid>
<TextBox Text="{Binding [0]}" />
<TextBox Text="{Binding [1]}" />
<TextBox Text="{Binding [2]}" />
<TextBox Text="{Binding [3]}" />
<TextBox Text="{Binding [4]}" />
<TextBox Text="{Binding [5]}" />
<TextBox Text="{Binding [6]}" />
<TextBox Text="{Binding [7]}" />
<TextBox Text="{Binding [8]}" />
</UniformGrid>
</UserControl>
代码隐藏:
public partial class PartialSudokuGrid : UserControl {
public PartialSudokuGrid() {
InitializeComponent();
}
public int[] Values {
get {
return (int[])GetValue(ValuesProperty);
}
set {
SetValue(ValuesProperty, value);
}
}
public static DependencyProperty ValuesProperty = DependencyProperty.Register("Values", typeof(int[]), typeof(PartialSudokuGrid));
}
修复:
正如 MDoobie 建议的那样,我从 PartialGridView 中删除了 Self
绑定并清除了代码隐藏文件(不再使用(。
老:
<local:PartialSudokuGrid Values="{Binding ValuesVM}" />
新增功能:
<local:PartialSudokuGrid DataContext="{Binding ValuesVM}" />
我认为你用这一行设置了窗口的数据上下文DataContext="{Binding PartialSudokuGrid, Source={StaticResource Locator}}"
它设置为 PartSudokuGrid,而不是 PartSudokuGridVM(具有 ValuesVM 属性(。尝试将 PartSudokuGridVm 设置为 DataContext。