WPF:更改选项卡会使Windowsformshost子级消失



如果你能抽出时间,我正在研究一个在互联网上找不到解决方案的问题。

我需要两个选项卡的富文本框来绑定相同的属性。这两个RichtextBox都通过Windowsformshost托管在WPF中。但是,如果我在选项卡之间交替,一个 RichtTextBox 只会消失(总是第一个可见的(。我正在迁移一个应用程序,到目前为止,我被迫使用WindowsForms RichtextBox。

我希望我设法正确传达我的问题 - 对不起,我不是母语人士。

提前致谢

编辑:我被要求提供一个清晰的例子来说明我的问题。谢谢你的笔记。我完全重写了我的问题。此外,我已经上传了一个微型应用程序,我已经隔离了问题。只需交替单击两个选项卡按钮,一个富文本框就会消失。

下面,如果这有用,我将提供代码:

这是我的主窗口 (XAML(:

<StackPanel Orientation="Horizontal" Height="35" Margin="0,35,0,0" VerticalAlignment="Top" >
<Button x:Name="Tab1" Command="{Binding LeftCommand}" Content="Left" MinWidth="100" />
<Button x:Name="Tab2" Command="{Binding RightCommand}" Content="Right" MinWidth="100" />
</StackPanel>
<Frame x:Name="MyFrame" 
Content="{Binding Path=CurrentTab, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" 
Margin="5,70,0,0" NavigationUIVisibility="Hidden"  />   

这是它的视图模型:

class MainWindowViewModel : INotifyPropertyChanged
{
public ICommand LeftCommand { get; }
public ICommand RightCommand { get; }
private TabViewModel MyTabViewModel { get; set; }
private PageLeft MyPageLeft { get; set; }
private PageRight MyPageRight { get; set; }
public MainWindowViewModel()
{
this.LeftCommand = new ModelCommand(p => this.SetSelectedTab("left"));
this.RightCommand = new ModelCommand(p => this.SetSelectedTab("right"));
this.MyTabViewModel = new TabViewModel();
this.MyPageLeft = new PageLeft() { DataContext = this.MyTabViewModel };
this.MyPageRight = new PageRight() { DataContext = this.MyTabViewModel };
//initial view on something
//this.SetSelectedTab("left");
}
private void SetSelectedTab(string param)
{
switch (param)
{
case "left":
this.CurrentTab = this.MyPageLeft;
break;
case "right":
this.CurrentTab = this.MyPageRight;
break;
}
}
private object _CurrentTab;
public object CurrentTab
{
get { return _CurrentTab; }
set
{
if (value != _CurrentTab)
{
_CurrentTab = value;
NotifyPropertyChanged_MainViewModel();
}
}
}
public event PropertyChangedEventHandler PropertyChanged;
// This method is called by the Set accessor of each property.  
// The CallerMemberName attribute that is applied to the optional propertyName  
// parameter causes the property name of the caller to be substituted as an argument.  
private void NotifyPropertyChanged_MainViewModel([CallerMemberName] String propertyName = "")
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}

此外,我有两个页面(MyPageLeft,MyPageRight(使用相同的视图模型(TabViewModel(并使用相同的XAML代码:

<ContentControl Content="{Binding Path=MyWindowsFormsHost, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />

两个页面使用相同的 TabViewModel:

class TabViewModel : INotifyPropertyChanged
{
private WindowsFormsHost _MyWindowsFormsHost;
public WindowsFormsHost MyWindowsFormsHost
{
get { return _MyWindowsFormsHost; }
set
{
if (value != _MyWindowsFormsHost)
{
_MyWindowsFormsHost = value;
NotifyPropertyChanged_TabViewModel();
}
}
}
public TabViewModel()
{
this.MyWindowsFormsHost = new WindowsFormsHost() { Child = new RichTextBox() { Text = "test" } };
}
public event PropertyChangedEventHandler PropertyChanged;
// This method is called by the Set accessor of each property.  
// The CallerMemberName attribute that is applied to the optional propertyName  
// parameter causes the property name of the caller to be substituted as an argument.  
private void NotifyPropertyChanged_TabViewModel([CallerMemberName] String propertyName = "")
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}

问题:如果我启动应用程序并交替单击两个选项卡按钮,其中一个带框的富文本框将消失。

如果有人可能需要它,我使用了一个肮脏的解决方案 - 尽管它可能不值得推荐。

我扩展了切换选项卡按钮的事件。它采用当前所选选项卡的富文本框的 RTF 属性,并将其注入到另一个富文本框中。它有点像这样:

if (Tab2 Button is clicked)
this.MyRTF = Tab1.Richtextbox.RTF;
Tab2.Richttextbox.Rtf = this.MyRTF;

请注意,这是一个初学者对可能整体有问题的方法的黑客。

感谢任何阅读我问题的人!

相关内容

  • 没有找到相关文章

最新更新