gpt4 book ai didi

wpf - 绑定(bind)多个 View 模型

转载 作者:行者123 更新时间:2023-12-03 10:21:56 24 4
gpt4 key购买 nike

我有一个用户控件的 View 模型,它在 View 模型的数据模板中定义。我想将用户控件的“GridViewData”属性绑定(bind)到 View 模型的“数据”属性。

我还是 WPF 的新手,并且在绑定(bind)方面很糟糕,所以请善待:p

XAML:

<Window x:Class="ReportUtility.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:lite="clr-namespace:ReportUtility.Controls.LiteGrid"
xmlns:vm="clr-namespace:ReportUtility.ViewModels"
xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
Title="MainWindow" Height="350" Width="525">

<!--This is the view model I want to bind to variable name is Grid: hosted in the content control below-->
<Window.Resources>
<DataTemplate DataType="{x:Type vm:LiteGridViewModel}">
<lite:LiteGrid GridViewData="{Binding ??}"/>
</DataTemplate>
</Window.Resources>

<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="auto"/>
<RowDefinition Height="50"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition Width="150"/>
</Grid.ColumnDefinitions>

<Button Grid.Row="0" Content="TestButton" HorizontalAlignment="Stretch" Command="{Binding ExecuteQueryCommand}"/>
<TextBox Grid.Row="1" Text="{Binding Path=SqlCommandText, UpdateSourceTrigger=PropertyChanged}"/>
<ContentControl Content="{Binding Grid}" Grid.Row="2" Background="Red"/>

<Border Background="Aqua" Grid.Column="1" Grid.RowSpan="3"/>
<GridSplitter Grid.Column="0" Width="3" Grid.RowSpan="3"/>
</Grid>

最佳答案

您将绑定(bind)到 Data

<DataTemplate DataType="{x:Type vm:LiteGridViewModel}">
<lite:LiteGrid GridViewData="{Binding Data}"/>
</DataTemplate>

LiteGrid 中进行此绑定(bind)会更好。 UserControl 而不是依赖使用该控件设置值的 XAML。
<UserControl GridViewData="{Binding Data}">
...
</UserControl>

您的绑定(bind)总是引用当前对象的 DataContext .由于您的 DataTemplate用于类型 LiteGridViewModel , DataContext其中 DataTemplate总是类型为 LiteGridViewModel .

例如,如果你有一个像
public class MyClassA
{
MyClassB ClassB {get; set;}
}

public class MyClassB
{
MyClassC ClassC {get; set;}
}

以及 MyClassA ClassA 的 ViewModel 属性(意味着您可以引用 ClassA.ClassB.ClassC ),您可以执行类似的操作
<ContentControl Content="{Binding ClassA}">
<ContentControl Content="{Binding ClassB}"> <!-- DataContext is MyClassA -->
<ContentControl Content="{Binding ClassC}"> <!-- DataContext is MyClassB -->
<!-- DataContext is MyClassC -->
</ContentControl>
</ContentControl>
</ContentControl>

关于wpf - 绑定(bind)多个 View 模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7011875/

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