1,wpf 项目复制别人的图片或样式文件,生成报错,需要把文件或图片点击属性设置资源文件
2,选项卡设计ui界面时,调整其它面板的控件,设置该属性 IsChecked="True"
<StackPanel Orientation="Horizontal" VerticalAlignment="Bottom" HorizontalAlignment="Center">
<RadioButton x:Name="BaseBtn" Content="基本信息" GroupName="R_Btn_G" Width="220" Height="64" Margin="10 0"
Style="{StaticResource MenuBtn_Style}"/>
<RadioButton x:Name="ReportBtn" Content="评估报告" GroupName="R_Btn_G" Width="220" Height="64" Margin="10 0"
IsChecked="True" Style="{StaticResource MenuBtn_Style}"/>
</StackPanel>