3

こんにちは、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 でこのウィンドウを開くと、ユーザー コントロールにデザイン時のデータが表示されません。

これを回避する方法はありますか?私は間違った方法で物事を進めていますか?

前もって感謝します...

4

0 に答える 0