Commit d3b51cfb authored by 540597360@qq.com's avatar 540597360@qq.com

图像反向

parent 7859a866
...@@ -289,6 +289,7 @@ ...@@ -289,6 +289,7 @@
<sys:String x:Key="strTipErrorComponentAdd">Out of range,or Overlap with other!</sys:String> <sys:String x:Key="strTipErrorComponentAdd">Out of range,or Overlap with other!</sys:String>
<sys:String x:Key="strTipNoTabItem">No TabItem!</sys:String> <sys:String x:Key="strTipNoTabItem">No TabItem!</sys:String>
<sys:String x:Key="strVisible">Visible</sys:String> <sys:String x:Key="strVisible">Visible</sys:String>
<sys:String x:Key="strGraphReverse">GraphReverse</sys:String>
<sys:String x:Key="strScan">Scan</sys:String> <sys:String x:Key="strScan">Scan</sys:String>
......
...@@ -293,6 +293,7 @@ ...@@ -293,6 +293,7 @@
<sys:String x:Key="strTipErrorComponentAdd">超出范围,或与其它控件有重叠!</sys:String> <sys:String x:Key="strTipErrorComponentAdd">超出范围,或与其它控件有重叠!</sys:String>
<sys:String x:Key="strTipNoTabItem">没有页面!</sys:String> <sys:String x:Key="strTipNoTabItem">没有页面!</sys:String>
<sys:String x:Key="strVisible">显示</sys:String> <sys:String x:Key="strVisible">显示</sys:String>
<sys:String x:Key="strGraphReverse">图像反向</sys:String>
<sys:String x:Key="strScan">扫描</sys:String> <sys:String x:Key="strScan">扫描</sys:String>
<sys:String x:Key="strHistory">历史</sys:String> <sys:String x:Key="strHistory">历史</sys:String>
......
...@@ -78,6 +78,10 @@ ...@@ -78,6 +78,10 @@
</StackPanel> </StackPanel>
</Button> </Button>
</StackPanel> </StackPanel>
<StackPanel Orientation="Horizontal">
<TextBlock Style="{StaticResource ResourceKey=TextBlockStyle_FieldHeaderEditable}" Text="{DynamicResource strGraphReverse}" />
<ToggleButton Style="{StaticResource ToggleButtonStyle1}" IsChecked="{Binding IsGraphReverse}" HorizontalAlignment="Left"/>
</StackPanel>
</StackPanel> </StackPanel>
</GroupBox> </GroupBox>
<StackPanel Orientation="Horizontal" Margin="3" HorizontalAlignment="Right"> <StackPanel Orientation="Horizontal" Margin="3" HorizontalAlignment="Right">
......
...@@ -54,6 +54,11 @@ namespace ThickTcpUiInWindow.UIModule ...@@ -54,6 +54,11 @@ namespace ThickTcpUiInWindow.UIModule
/// </summary> /// </summary>
public bool IsDynAreaVisible { get; set; } = true; public bool IsDynAreaVisible { get; set; } = true;
/// <summary>
/// 曲线反向显示
/// </summary>
public bool IsGraphReverse { get; set; } = false;
/// <summary> /// <summary>
/// 隐藏 logo /// 隐藏 logo
/// </summary> /// </summary>
...@@ -132,7 +137,7 @@ namespace ThickTcpUiInWindow.UIModule ...@@ -132,7 +137,7 @@ namespace ThickTcpUiInWindow.UIModule
"Items", "Items",
"ControllerStates", "ControllerStates",
"DynAreaItems", "DynAreaItems",
"DynAreaWidth","IsDynAreaVisible", "DynAreaWidth","IsDynAreaVisible","IsGraphReverse",
"Left","Top","Width","Height","WindowState", "Left","Top","Width","Height","WindowState",
"IsLogoHidden" "IsLogoHidden"
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment