0

私はエクササイズアプリに取り組んでいます。私のアプリはMVVMを採用しています。2 つのユーザー コントロールを持つウィンドウを作成しようとしています。ユーザー コントロールの 1 つには、viewmodel からデータを取得するデータグリッドが含まれています。
アプリの実行時に、データグリッドにデフォルト値 (プライベート フィールド) が自動入力されることを期待しています。しかし、バインディング エラーがあります: System.Windows.Data Error: 4 : 参照 'ElementName=windowView' でバインドするソースが見つかりません。BindingExpression:Path=ActivePacket; DataItem=null; ターゲット要素は 'DataGrid' (Name='dataGrid1') です。ターゲット プロパティは 'ItemsSource' (タイプ 'IEnumerable') です。

ありがとう!

これが私のコードです:

========= MainWindow.xaml ================

    <Window x:Class="Project.Abc.Try.MainWindow"
        x:Name="windowView"
        xmlns:local="clr-namespace:Project.Abc.Try"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="600">

    <Window.DataContext>
        <local:PayloadViewModel />
    </Window.DataContext>

    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="78*" />
            <RowDefinition Height="233*" />
        </Grid.RowDefinitions>

        <local:CmdMenuView Grid.Row="0" Margin="6,6,3,6" />
        <local:PayloadView Grid.Row="1" Margin="6,6,3,6" />
    </Grid>
</Window>

============ PayloadView.xaml ===========

    <UserControl x:Class="Project.Abc.Try.PayloadView"
             x:Name="PLview"
             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="199" d:DesignWidth="588" >

    <Grid Height="200" Width="580" >
        <!--<DataGrid AutoGenerateColumns="False" Height="45" HorizontalAlignment="Left" Margin="36,20,0,0" Name="dataGrid1" VerticalAlignment="Top" Width="500" ItemsSource="{Binding RelativeSource={RelativeSource AncestorType={x:Type Window}}, Path=ActivePacket}"> -->
        <DataGrid AutoGenerateColumns="False" Height="45" HorizontalAlignment="Left" Margin="36,20,0,0" Name="dataGrid1" VerticalAlignment="Top" Width="500" ItemsSource="{Binding ElementName=windowView, Path=ActivePacket}">

                <DataGrid.Columns>
                <DataGridTextColumn Binding="{Binding PacketId, Mode=TwoWay}" Header="PacketID " Width="*" />
                <DataGridTextColumn Binding="{Binding PacketLength, Mode=TwoWay}" Header="PacketLength" Width="*" />
                <DataGridTextColumn Binding="{Binding Spare}" Header="Byte 6" Width="*" />
            </DataGrid.Columns>
        </DataGrid>
        <Button Content="Send" Command="{Binding Path=SendCommand}" Height="23" HorizontalAlignment="Left" Margin="310,122,0,0" Name="button1" VerticalAlignment="Top" Width="75" />
    </Grid>
</UserControl>

=================== PayloadViewModel.cs =============================

namespace Project.Abc.Try
{
    public class PayloadViewModel : ObservableObject
    {
        // ......
        private CmdPacket _activePacket;
        public CmdPacket ActivePacket
        {
            get { return _activePacket; }
            set
            {
                if (value != _activePacket)
                {
                    _activePacket = value;
                    OnPropertyChanged("ActivePacket");
                }
            }
        }
        // .........
 }
4

2 に答える 2

3

DataContextのビューにを割り当てる必要がありMainWindow.xamlます。

<local:PayloadView ... DataContext="{Binding RelativeSource={RelativeSource AncestorType=Window}, Path=DataContext}" />

ではPayloadView.xaml、ビュー モデル プロパティにバインドするだけです。

<DataGrid ... ItemsSource="{Binding ActivePacket}" />
于 2013-04-18T22:42:22.183 に答える
0

いくつかの考え... PayloadViewModel から PayloadView 以外の場所に何も必要ない場合は、PayloadViewModel を PayloadView の DataContext に直接バインドし、それに直接バインドすることができます。

<UserControl x:Class="Project.Abc.Try.PayloadView" ...>

    <UserControl.DataContext>
        <local:PayloadViewModel />
    </UserControl.DataContext>

    ...

    <DataGrid ... ItemsSource="{Binding ActivePacket}" />

    ...

</UserControl>

また、MVVM を実行したい場合は、まだ Caliburn.Micro を使用することを検討してください。コードなしで、各ビューのデータコンテキストを対応するビューモデルに自動的にバインドします (つまり、PayloadView は PayloadViewModel のパブリック プロパティに自動的にアクセスできます)。次に、書く必要があるのは次のとおりです。

<UserControl x:Class="Project.Abc.Try.PayloadView" ...>

    ...

    <DataGrid ... ItemsSource="{Binding ActivePacket}" />

    ...

</UserControl>

Caliburn.Micro の優れたチュートリアルは次のとおりです

お役に立てれば。

于 2013-04-19T03:03:18.650 に答える