WPF笔记
1、TextBlock
文本截断
TextTrimming="CharacterEllipsis"
换行显示、允许输入回车键
TextWrapping="Wrap" AcceptsReturn="True"
提示绑定文本
ToolTip="{Binding Path=Text, RelativeSource={RelativeSource Self}}"
2、异步刷新UI
Application.Current.Dispatcher.BeginInvoke( new Action(() => { GridNoSignal.Visibility = Visibility.Visible; }), null);
3、.Net5引用System.Windows.Forms
编辑项目文件,添加UseWindowsForms标记。
<PropertyGroup> <OutputType>WinExe</OutputType> <TargetFramework>net5.0-windows</TargetFramework> <UseWPF>true</UseWPF> <UseWindowsForms>true</UseWindowsForms> <ApplicationIcon>Resources\Images\App.ico</ApplicationIcon> <AssemblyName>test</AssemblyName> </PropertyGroup>
4、修改HandyControl选中颜色
设置附加属性hc:VisualElement.Highlight(BorderBrush、Background、Foreground)即可。
<hc:ButtonGroup Grid.Row="0" Grid.Column="2" Style="{StaticResource ButtonGroupSolid}" Orientation="Vertical" Height="280" hc:VisualElement.HighlightBorderBrush="Yellow" hc:VisualElement.HighlightBackground="Yellow" hc:VisualElement.HighlightForeground="{StaticResource PrimaryBrush}" HorizontalAlignment="Left" VerticalAlignment="Center"> <RadioButton Content="1" FontSize="14" Width="50" Height="56"/> <RadioButton Content="2" FontSize="14" Width="50" Height="56"/> <RadioButton Content="3" FontSize="14" Width="50" Height="56"/> <RadioButton Content="4" FontSize="14" Width="50" Height="56"/> <RadioButton Content="5" FontSize="14" Width="50" Height="56"/> </hc:ButtonGroup>