You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
745 B
Plaintext
16 lines
745 B
Plaintext
2 years ago
|
<UserControl x:Class="mseedChart.Main.Views.ChartPlotView"
|
||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
xmlns:prism="http://prismlibrary.com/"
|
||
|
prism:ViewModelLocator.AutoWireViewModel="True"
|
||
|
mc:Ignorable="d"
|
||
|
d:DesignHeight="450" d:DesignWidth="800">
|
||
|
|
||
|
<Grid>
|
||
|
<WpfPlot x:Name="plt"></WpfPlot>
|
||
|
<CheckBox x:Name="AutoAxisCbox" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0,0,20,0" IsChecked="True">轴自适应</CheckBox>
|
||
|
</Grid>
|
||
|
</UserControl>
|