wpf
<hc:Window
x:Class="IconfontXGeometry.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:avalonEdit="http://icsharpcode.net/sharpdevelop/avalonedit"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:hc="https://handyorg.github.io/handycontrol"
xmlns:local="clr-namespace:IconfontXGeometry"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="iconfont转几何图形"
Width="1000"
Height="600"
Loaded="Window_Loaded"
mc:Ignorable="d" Icon="/app1.png">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="auto" />
<RowDefinition />
<RowDefinition Height="auto" />
<RowDefinition />
</Grid.RowDefinitions>
<TextBlock
Margin="10,5"
FontSize="18"
Foreground="{DynamicResource PrimaryBrush}"
Text="SVG 代码" />
<avalonEdit:TextEditor
Name="SVG_Text"
Grid.Row="1"
Margin="5"
FontFamily="Consolas"
FontSize="10"
ShowLineNumbers="True"
SyntaxHighlighting="XML"
TextChanged="SVG_Text_TextChanged"
WordWrap="True" />
<StackPanel Grid.Row="2" Orientation="Horizontal">
<CheckBox
x:Name="CKB_Spy"
Margin="10,5,30,5"
Content="监控剪切板"
FontSize="18"
IsChecked="True" />
<RadioButton
x:Name="RaBtn_Geometry"
Margin="5"
Checked="RadioButton_Checked"
Content="Geometry"
IsChecked="True" />
<RadioButton
x:Name="RaBtn_PathGeometry"
Margin="5"
Checked="RadioButton_Checked"
Content="PathGeometry" />
<RadioButton
x:Name="RaBtn_CombinedGeometry"
Margin="5"
Checked="RadioButton_Checked"
Content="CombinedGeometry" />
<RadioButton
x:Name="RaBtn_DrawingImage"
Margin="5,5,30,5"
Checked="RadioButton_Checked"
Content="DrawingImage" />
<Label
Padding="0"
Background="Transparent"
BorderThickness="0"
Content="资源名称:"
FontSize="16"
Foreground="{DynamicResource PrimaryBrush}" />
<hc:TextBox
x:Name="TB_Name"
MinWidth="260"
MaxWidth="400"
Margin="3"
VerticalContentAlignment="Center"
hc:BorderElement.CornerRadius="0"
BorderThickness="1"
FontSize="14"
Text="Icon_"
TextChanged="TB_Name_TextChanged" />
</StackPanel>
<TabControl Name="MyTabControl" Grid.Row="3">
<TabItem FontSize="18" Header="Geometry 资源">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="2*" />
<ColumnDefinition Width="*" />
&l

最低0.47元/天 解锁文章
516

被折叠的 条评论
为什么被折叠?



