随笔分类 - C# WPF / Prism
摘要:Prism内置了几个区域适配器 ContentControlRegionAdapter ItemsControlRegionAdapter SelectorRegionAdapter ComboBox ListBox Ribbon TabControl 所以我们可以在ContentControl当中
阅读全文
摘要:定义Region的方式有两种: 一种是在XAML定义 RegionManager.RegionName(XAML) 一、View代码 1 <Viewbox Grid.Column="1" > 2 <ContentControl prism:RegionManager.RegionName="Cont
阅读全文
摘要:View代码 1 <StackPanel> 2 <TextBlock Text="方法一"></TextBlock> 3 <TextBox Text="{Binding Value1}"></TextBox> 4 <TextBlock Text="方法二"></TextBlock> 5 <TextB
阅读全文
摘要:View代码 <StackPanel> <Button Content="方法一" Command="{Binding AddCommand}"></Button> </StackPanel> ViewModel代码 1 public DelegateCommand? AddCommand 2 {
阅读全文
摘要:Prism - 标签 - 阿杜聊编程 - 博客园 (cnblogs.com)
阅读全文