我一直在努力奋斗三天,我觉得我非常接近解决方案,但我无法到达那里。
我正在制作一个数独谜题,我想创建一个自定义控件来显示九个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}" />
答案 0 :(得分:1)
我认为您使用此行DataContext="{Binding PartialSudokuGrid, Source={StaticResource Locator}}"
将PartialSudokuGrid设置为PartialSudokuGridVM(具有ValuesVM属性)。尝试将PartialSudokuGridVm设置为DataContext。