背景:データグリッドを使用してデータを表示するプロジェクトがあり、データグリッドにはユーザーコントロールを含む行詳細列があります。ユーザーコントロールには、ユーザーがメッセージを入力して表示するための TextBox があります。
問題:ボタンをクリックしたときにユーザーコントロールをポップアップさせたいのですが、ポップアップされたユーザーコントロールは、データグリッドのrowdetail列にあるユーザーコントロールと同じコンテキストを持っています。これは、rowdetail セルのスペースが限られているため、ユーザーがユーザー コントロールと簡単に対話できるようにすることを目的としています。
usecontrol が実装されており、rowdetail セルで正常に機能します。ただし、データソース、テキストボックスにメッセージが表示されているなど、コンテキストを変更せずにポップアップする方法がわかりません。誰かアドバイスをいただけますか? ちなみに、私はMVVMパターンを使用しています。
編集: RowDetailTemplate は次のとおりです。
<DataTemplate x:Key="RowDetailTemplate">
<Grid x:Name="RowDetailGrid" HorizontalAlignment="Left" Width="850" Height="355" >
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="100" />
</Grid.ColumnDefinitions>
<my:MyUserControl x:Name="myUserControl" />
<Button Grid.Row="1" Width="60" Height="25" Content="Pop Up"
Command="{Binding Path=PopupCommand}"/>
.....
</Grid>
</DataTemplate>
これがユーザーコントロールです(上記のコードの MyUserControl ):
<UserControl x:Class="MyProject"
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="300" d:DesignWidth="600">
<Grid>
<ScrollViewer Margin="0" HorizontalScrollBarVisibility="Disabled" >
<StackPanel>
<ItemsControl Grid.Row="0" ItemsSource="{Binding Output, Mode=OneWay}" FontSize="12">
<ItemsControl.ItemTemplate>
<DataTemplate>
<TextBlock TextWrapping="Wrap" Text="{Binding Path=.}" Foreground="White" />
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
<DockPanel Grid.Row="1" LastChildFill="True">
<TextBox Text="{Binding Input, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}"
TextWrapping="Wrap"
BorderBrush="{x:Null}" SelectionBrush="{x:Null}"
BorderThickness="0" Width="Auto">
<TextBox.InputBindings>
<KeyBinding Command="{Binding Path=TextBoxEnter}" Key="Enter" />
</TextBox.InputBindings>
</TextBox>
</DockPanel>
</StackPanel>
</ScrollViewer>
</Grid>