嗨,我有一个简单的用户控件,其中包含一些 Blend 生成的设计时数据:
<UserControl x:Class="CustomerProfile.View.CustomerProfile"
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:vm="clr-namespace:CustomerProfile.ViewModel"
mc:Ignorable="d"
d:DesignHeight="400" d:DesignWidth="400">
<Grid Margin="8" d:DataContext="{d:DesignData /SampleData/CustomerProfileViewModelSampleData.xaml}">
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="25" />
<RowDefinition />
</Grid.RowDefinitions>
<Label Content="Surname" />
<TextBox Grid.Column="1" Text="{Binding Account.Surname}" />
</Grid>
这一切都很好,当我在 Blend 或 Cider 中打开用户控件时,我会看到生成的数据。
但是,我在窗口中使用 UserControl,如下所示:
<Window x:Class="Demo.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:cp="clr-namespace:CustomerProfile.View;assembly=CustomerProfile"
Title="Demo" Height="350" Width="525">
<Grid>
<cp:CustomerProfile />
</Grid>
当我在 Blend 或 Cider 中打开此窗口时,我在用户控件中看不到设计时数据。
有没有办法解决?我做事的方式不对吗?
提前致谢...