|
|
@ -22,6 +22,9 @@
|
|
|
|
<Window.DataContext>
|
|
|
|
<Window.DataContext>
|
|
|
|
<vm:MainVM />
|
|
|
|
<vm:MainVM />
|
|
|
|
</Window.DataContext>
|
|
|
|
</Window.DataContext>
|
|
|
|
|
|
|
|
<Window.Resources>
|
|
|
|
|
|
|
|
<hc:String2VisibilityConverter x:Key="String2VisibilityConverter"/>
|
|
|
|
|
|
|
|
</Window.Resources>
|
|
|
|
<Border BorderThickness="0"
|
|
|
|
<Border BorderThickness="0"
|
|
|
|
Background="#fff"
|
|
|
|
Background="#fff"
|
|
|
|
CornerRadius="10">
|
|
|
|
CornerRadius="10">
|
|
|
@ -107,6 +110,7 @@
|
|
|
|
Margin="5,0,0,5"
|
|
|
|
Margin="5,0,0,5"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
VerticalAlignment="Bottom"
|
|
|
|
VerticalAlignment="Bottom"
|
|
|
|
|
|
|
|
Visibility="{Binding InputTxt,Converter={StaticResource String2VisibilityConverter}}"
|
|
|
|
Command="{Binding CopyInputCmd}">
|
|
|
|
Command="{Binding CopyInputCmd}">
|
|
|
|
<Image Source="/Images/copy2.png"/>
|
|
|
|
<Image Source="/Images/copy2.png"/>
|
|
|
|
</Button>
|
|
|
|
</Button>
|
|
|
@ -182,6 +186,7 @@
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
VerticalAlignment="Bottom"
|
|
|
|
VerticalAlignment="Bottom"
|
|
|
|
ToolTip="直接复制"
|
|
|
|
ToolTip="直接复制"
|
|
|
|
|
|
|
|
Visibility="{Binding OutputTxt,Converter={StaticResource String2VisibilityConverter}}"
|
|
|
|
Command="{Binding CopyResultCmd}">
|
|
|
|
Command="{Binding CopyResultCmd}">
|
|
|
|
<Image Source="/Images/copy2.png"/>
|
|
|
|
<Image Source="/Images/copy2.png"/>
|
|
|
|
</Button>
|
|
|
|
</Button>
|
|
|
@ -191,6 +196,7 @@
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
VerticalAlignment="Bottom"
|
|
|
|
VerticalAlignment="Bottom"
|
|
|
|
ToolTip="蛇形"
|
|
|
|
ToolTip="蛇形"
|
|
|
|
|
|
|
|
Visibility="{Binding SnakeRet,Converter={StaticResource String2VisibilityConverter}}"
|
|
|
|
Command="{Binding CopySnakeResultCmd}">
|
|
|
|
Command="{Binding CopySnakeResultCmd}">
|
|
|
|
<Image Source="/Images/copy_s.png"/>
|
|
|
|
<Image Source="/Images/copy_s.png"/>
|
|
|
|
</Button>
|
|
|
|
</Button>
|
|
|
@ -199,6 +205,7 @@
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
VerticalAlignment="Bottom"
|
|
|
|
VerticalAlignment="Bottom"
|
|
|
|
ToolTip="小驼峰"
|
|
|
|
ToolTip="小驼峰"
|
|
|
|
|
|
|
|
Visibility="{Binding SmallHumpRet,Converter={StaticResource String2VisibilityConverter}}"
|
|
|
|
Command="{Binding CopySmallHumpResultCmd}">
|
|
|
|
Command="{Binding CopySmallHumpResultCmd}">
|
|
|
|
<Image Source="/Images/copy_h.png"/>
|
|
|
|
<Image Source="/Images/copy_h.png"/>
|
|
|
|
</Button>
|
|
|
|
</Button>
|
|
|
@ -207,6 +214,7 @@
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
VerticalAlignment="Bottom"
|
|
|
|
VerticalAlignment="Bottom"
|
|
|
|
ToolTip="大驼峰"
|
|
|
|
ToolTip="大驼峰"
|
|
|
|
|
|
|
|
Visibility="{Binding LargeHumpRet,Converter={StaticResource String2VisibilityConverter}}"
|
|
|
|
Command="{Binding CopyLargeHumpResultCmd}">
|
|
|
|
Command="{Binding CopyLargeHumpResultCmd}">
|
|
|
|
<Image Source="/Images/copy_h2.png"/>
|
|
|
|
<Image Source="/Images/copy_h2.png"/>
|
|
|
|
</Button>
|
|
|
|
</Button>
|
|
|
|