目前 UserControl.Resources
Present UserControl.Resources
在我的 Xaml 中,我将资源定义为 vehicleDataInput,它显示了一些文本框供用户输入数据。如果我没有为它定义 x:Key ,它会出现在我的应用程序中并按预期工作。问题是我想决定在我看来它是在 x:Key 的帮助下放置的,但我无法正确绑定。
您可以在我的代码中进一步看到,我尝试使用内容控件并绑定到 "vehicleDataInput",但它在运行时不起作用。
我试图找到这个问题的答案,但似乎没有人知道,这让我觉得我以错误的方式解决了这个问题,我错过了什么?
<UserControl x:Class="RegCarManager.Vehicles.CreateVehicle.CreateVehicleView"
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"
xmlns:vehicles="clr-namespace:RegCarManager.Vehicles"
xmlns:vehiclesViewModel="clr-namespace:RegCarManager.Vehicles.CreateVehicle"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<UserControl.Resources>
<DataTemplate x:Key="vehicleDataInput" DataType="{x:Type vehicles:VehicleModel}">
<Grid HorizontalAlignment="Stretch" VerticalAlignment="Top" >
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<TextBlock Grid.Column="0" Grid.Row="1" Text="Model" VerticalAlignment="Center" Margin="5" />
<TextBox Grid.Column="1" Grid.Row="1" Text="{Binding Model}" Margin="5" Width="150" />
<TextBlock Grid.Column="0" Grid.Row="2" Text="Reg number" VerticalAlignment="Center" Margin="5" />
<TextBox Grid.Column="1" Grid.Row="2" Text="{Binding RegNumber}" Margin="5" Width="150" />
</Grid>
</DataTemplate>
</UserControl.Resources>
<DockPanel Margin="20">
<ComboBox DockPanel.Dock="Top"
ItemsSource="{Binding Clients}"
DisplayMemberPath="FullName"
SelectedValuePath="ClientId"
SelectedValue="{Binding OwnerId, Mode=TwoWay}" />
<ContentControl Content="{DynamicResource vehicleDataInput}" />
<DockPanel DockPanel.Dock="Bottom">
<Button Content="Save" DockPanel.Dock="Right" Margin="10,2" VerticalAlignment="Center"
Command="{Binding Path=SaveNewVehicleCommand}" IsDefault="True" Width="100" />
</DockPanel>
<ContentControl Margin="20,10" Content="{Binding Path=NewVehicle}" />
</DockPanel>
模板用于生成显示内容的UI。这不是内容;它描述了内容应该如何呈现给用户。
<ContentControl
Content="{Binding NewVehicle}"
ContentTemplate="{StaticResource vehicleDataInput}"
/>
我猜你的主视图模型中一定有一个 VehicleModel
的实例。那是 NewVehicle
吗?
在这种情况下,使用 StaticResource
还是 DynamicResource
并不重要。不同之处在于,如果您在运行时将资源字典中的 vehicleDataInput
资源替换为不同的模板,DynamicResource
将注意并更新 ContentControl
。但是您不会那样做,所以 StaticResource
没问题。
在我的 Xaml 中,我将资源定义为 vehicleDataInput,它显示了一些文本框供用户输入数据。如果我没有为它定义 x:Key ,它会出现在我的应用程序中并按预期工作。问题是我想决定在我看来它是在 x:Key 的帮助下放置的,但我无法正确绑定。
您可以在我的代码中进一步看到,我尝试使用内容控件并绑定到 "vehicleDataInput",但它在运行时不起作用。
我试图找到这个问题的答案,但似乎没有人知道,这让我觉得我以错误的方式解决了这个问题,我错过了什么?
<UserControl x:Class="RegCarManager.Vehicles.CreateVehicle.CreateVehicleView"
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"
xmlns:vehicles="clr-namespace:RegCarManager.Vehicles"
xmlns:vehiclesViewModel="clr-namespace:RegCarManager.Vehicles.CreateVehicle"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<UserControl.Resources>
<DataTemplate x:Key="vehicleDataInput" DataType="{x:Type vehicles:VehicleModel}">
<Grid HorizontalAlignment="Stretch" VerticalAlignment="Top" >
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<TextBlock Grid.Column="0" Grid.Row="1" Text="Model" VerticalAlignment="Center" Margin="5" />
<TextBox Grid.Column="1" Grid.Row="1" Text="{Binding Model}" Margin="5" Width="150" />
<TextBlock Grid.Column="0" Grid.Row="2" Text="Reg number" VerticalAlignment="Center" Margin="5" />
<TextBox Grid.Column="1" Grid.Row="2" Text="{Binding RegNumber}" Margin="5" Width="150" />
</Grid>
</DataTemplate>
</UserControl.Resources>
<DockPanel Margin="20">
<ComboBox DockPanel.Dock="Top"
ItemsSource="{Binding Clients}"
DisplayMemberPath="FullName"
SelectedValuePath="ClientId"
SelectedValue="{Binding OwnerId, Mode=TwoWay}" />
<ContentControl Content="{DynamicResource vehicleDataInput}" />
<DockPanel DockPanel.Dock="Bottom">
<Button Content="Save" DockPanel.Dock="Right" Margin="10,2" VerticalAlignment="Center"
Command="{Binding Path=SaveNewVehicleCommand}" IsDefault="True" Width="100" />
</DockPanel>
<ContentControl Margin="20,10" Content="{Binding Path=NewVehicle}" />
</DockPanel>
模板用于生成显示内容的UI。这不是内容;它描述了内容应该如何呈现给用户。
<ContentControl
Content="{Binding NewVehicle}"
ContentTemplate="{StaticResource vehicleDataInput}"
/>
我猜你的主视图模型中一定有一个 VehicleModel
的实例。那是 NewVehicle
吗?
在这种情况下,使用 StaticResource
还是 DynamicResource
并不重要。不同之处在于,如果您在运行时将资源字典中的 vehicleDataInput
资源替换为不同的模板,DynamicResource
将注意并更新 ContentControl
。但是您不会那样做,所以 StaticResource
没问题。