背景:我有一个使用数据网格来显示数据的项目,数据网格有一个包含用户控件的 rowdetail 列。usercontrol 有一些 TextBox 用于用户输入和显示一些消息。
问题:我想在单击按钮时弹出用户控件,并且弹出的用户控件与datagrid的rowdetail列中的用户控件具有相同的上下文。这样做的目的是让用户更容易与 usercontrol 交互,因为 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>