|
|
|
|
@ -159,173 +159,190 @@
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Border Margin="20"
|
|
|
|
|
Background="#384659" BorderBrush="#404F63" BorderThickness="1" CornerRadius="10">
|
|
|
|
|
<StackPanel>
|
|
|
|
|
<Grid Margin="15">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="80"/>
|
|
|
|
|
<ColumnDefinition/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<TextBlock Text="그래프" VerticalAlignment="Center"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream4}" Foreground="White"/>
|
|
|
|
|
|
|
|
|
|
<ComboBox Margin="15 0 0 0" Height="50" Grid.Column="1"
|
|
|
|
|
Style="{StaticResource ComboBoxStyle}"
|
|
|
|
|
ItemsSource="{Binding GraphTypes}"
|
|
|
|
|
SelectedIndex="{Binding SelectedGraphIndex, Mode=TwoWay}"
|
|
|
|
|
helper:ComboBoxHelper.SelectFirstOnItemsChange="True"
|
|
|
|
|
IsEditable="False" IsTextSearchEnabled="False"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
<Grid Margin="15 0">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="80"/>
|
|
|
|
|
<ColumnDefinition/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<TextBlock Text="X축" VerticalAlignment="Center"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream4}" Foreground="White"/>
|
|
|
|
|
<ComboBox Margin="15 0 0 0" Height="50" Grid.Column="1"
|
|
|
|
|
Style="{StaticResource ComboBoxStyle}"
|
|
|
|
|
ItemsSource="{Binding XFieldCandidates}"
|
|
|
|
|
SelectedItem="{Binding SelectedXField}"
|
|
|
|
|
DisplayMemberPath="Display"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
<Grid Margin="15 5">
|
|
|
|
|
<Grid.Resources>
|
|
|
|
|
<Style TargetType="FrameworkElement">
|
|
|
|
|
<Setter Property="Visibility" Value="Collapsed"/>
|
|
|
|
|
</Style>
|
|
|
|
|
<!-- 보이기 토글용 스타일 -->
|
|
|
|
|
<Style x:Key="VisibleWhenTrue" TargetType="FrameworkElement" BasedOn="{StaticResource {x:Type FrameworkElement}}">
|
|
|
|
|
<Style.Triggers>
|
|
|
|
|
<DataTrigger Binding="{Binding SelectedGraphType}" Value="LINE">
|
|
|
|
|
<Setter Property="Visibility" Value="Visible"/>
|
|
|
|
|
</DataTrigger>
|
|
|
|
|
<DataTrigger Binding="{Binding SelectedGraphType}" Value="STEP">
|
|
|
|
|
<Setter Property="Visibility" Value="Visible"/>
|
|
|
|
|
</DataTrigger>
|
|
|
|
|
</Style.Triggers>
|
|
|
|
|
</Style>
|
|
|
|
|
<Style x:Key="VisibleWhenScatter" TargetType="FrameworkElement" BasedOn="{StaticResource {x:Type FrameworkElement}}">
|
|
|
|
|
<Style.Triggers>
|
|
|
|
|
<DataTrigger Binding="{Binding SelectedGraphType}" Value="SCATTER">
|
|
|
|
|
<Setter Property="Visibility" Value="Visible"/>
|
|
|
|
|
</DataTrigger>
|
|
|
|
|
</Style.Triggers>
|
|
|
|
|
</Style>
|
|
|
|
|
<Style x:Key="VisibleWhenBox" TargetType="FrameworkElement" BasedOn="{StaticResource {x:Type FrameworkElement}}">
|
|
|
|
|
<Style.Triggers>
|
|
|
|
|
<DataTrigger Binding="{Binding SelectedGraphType}" Value="BOX">
|
|
|
|
|
<Setter Property="Visibility" Value="Visible"/>
|
|
|
|
|
</DataTrigger>
|
|
|
|
|
</Style.Triggers>
|
|
|
|
|
</Style>
|
|
|
|
|
</Grid.Resources>
|
|
|
|
|
|
|
|
|
|
<!-- LINE/STEP: 다중 선택 -->
|
|
|
|
|
<Grid Style="{StaticResource VisibleWhenTrue}">
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="40"/>
|
|
|
|
|
<RowDefinition/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<TextBlock Text="Y축 (복수 선택)" VerticalAlignment="Center"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream4}" Foreground="White"/>
|
|
|
|
|
<!-- SelectedItems 바인딩을 위한 간단 Behavior는 아래 3) 참고 -->
|
|
|
|
|
<ListBox ItemsSource="{Binding YFieldCandidates}"
|
|
|
|
|
DisplayMemberPath="Display"
|
|
|
|
|
SelectionMode="Extended"
|
|
|
|
|
helper:MultiSelectBehavior.SelectedItems="{Binding SelectedYFields, Mode=OneWay}"
|
|
|
|
|
Height="150" Grid.Row="1"
|
|
|
|
|
FontSize="16" FontWeight="Bold"/>
|
|
|
|
|
<!-- 옵션 -->
|
|
|
|
|
<StackPanel Orientation="Horizontal" Margin="0 15 0 0" Grid.Row="2">
|
|
|
|
|
<CheckBox Content="마커 표시" IsChecked="{Binding ShowMarkers}" Margin="0 0 15 0"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream4}" Foreground="White"
|
|
|
|
|
VerticalContentAlignment="Center"/>
|
|
|
|
|
<CheckBox Content="스무딩" IsChecked="{Binding UseSmoothing}"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream4}" Foreground="White"
|
|
|
|
|
VerticalContentAlignment="Center"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
<!-- SCATTER: 단일 Y + 옵션 -->
|
|
|
|
|
<Grid Style="{StaticResource VisibleWhenScatter}">
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="70"/>
|
|
|
|
|
<RowDefinition Height="70"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition/>
|
|
|
|
|
<RowDefinition Height="50"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<StackPanel DockPanel.Dock="Top">
|
|
|
|
|
<Grid Margin="15">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="80"/>
|
|
|
|
|
<ColumnDefinition/>
|
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<TextBlock Text="Y축" VerticalAlignment="Center"
|
|
|
|
|
<TextBlock Text="그래프" VerticalAlignment="Center"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream4}" Foreground="White"/>
|
|
|
|
|
<ComboBox ItemsSource="{Binding YFieldCandidates}"
|
|
|
|
|
SelectedItem="{Binding SelectedYField}"
|
|
|
|
|
DisplayMemberPath="Display" Height="50"
|
|
|
|
|
Grid.Column="1" Grid.ColumnSpan="3" Margin="15 0 0 0"
|
|
|
|
|
Style="{StaticResource ComboBoxStyle}"/>
|
|
|
|
|
|
|
|
|
|
<TextBlock Text="마커 크기" Grid.Row="1" VerticalAlignment="Center"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream4}" Foreground="White"/>
|
|
|
|
|
<Slider Grid.Row="1" Grid.Column="1" VerticalAlignment="Center" Margin="15 0 0 0"
|
|
|
|
|
Minimum="1" Maximum="15" Value="{Binding ScatterMarkerSize}" Width="280" IsSnapToTickEnabled="True" TickFrequency="1"/>
|
|
|
|
|
<TextBlock Text="{Binding ScatterMarkerSize}" Margin="15 0"
|
|
|
|
|
Grid.Row="1" Grid.Column="2" VerticalAlignment="Center"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream4}" Foreground="White"/>
|
|
|
|
|
<CheckBox Content="회귀선" IsChecked="{Binding ShowRegression}"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream4}" Foreground="White"
|
|
|
|
|
Margin="0" Grid.Row="1" Grid.Column="3"
|
|
|
|
|
VerticalContentAlignment="Center"/>
|
|
|
|
|
<ComboBox Margin="15 0 0 0" Height="50" Grid.Column="1"
|
|
|
|
|
Style="{StaticResource ComboBoxStyle}"
|
|
|
|
|
ItemsSource="{Binding GraphTypes}"
|
|
|
|
|
SelectedIndex="{Binding SelectedGraphIndex, Mode=TwoWay}"
|
|
|
|
|
helper:ComboBoxHelper.SelectFirstOnItemsChange="True"
|
|
|
|
|
IsEditable="False" IsTextSearchEnabled="False"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
<!-- BOX: 값 필드 + 그룹 필드 + 옵션 -->
|
|
|
|
|
<Grid Style="{StaticResource VisibleWhenBox}">
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="70"/>
|
|
|
|
|
<RowDefinition Height="70"/>
|
|
|
|
|
<RowDefinition Height="70"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid Margin="15 0">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="80"/>
|
|
|
|
|
<ColumnDefinition/>
|
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<TextBlock Text="값 필드" VerticalAlignment="Center"
|
|
|
|
|
<TextBlock Text="X축" VerticalAlignment="Center"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream4}" Foreground="White"/>
|
|
|
|
|
<ComboBox ItemsSource="{Binding YFieldCandidates}"
|
|
|
|
|
SelectedItem="{Binding SelectedYField}"
|
|
|
|
|
DisplayMemberPath="Display" Height="50"
|
|
|
|
|
Grid.Column="1" Margin="15 0 0 0"
|
|
|
|
|
Style="{StaticResource ComboBoxStyle}"/>
|
|
|
|
|
<ComboBox Margin="15 0 0 0" Height="50" Grid.Column="1"
|
|
|
|
|
Style="{StaticResource ComboBoxStyle}"
|
|
|
|
|
ItemsSource="{Binding XFieldCandidates}"
|
|
|
|
|
SelectedItem="{Binding SelectedXField}"
|
|
|
|
|
DisplayMemberPath="Display"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
<TextBlock VerticalAlignment="Center" Grid.Row="1"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream4}" Foreground="White">
|
|
|
|
|
<Run Text="그룹"/>
|
|
|
|
|
<LineBreak/>
|
|
|
|
|
<Run Text="(박스 기준)" FontSize="14"/>
|
|
|
|
|
</TextBlock>
|
|
|
|
|
<ComboBox ItemsSource="{Binding GroupFieldCandidates}"
|
|
|
|
|
SelectedItem="{Binding SelectedGroupField}"
|
|
|
|
|
DisplayMemberPath="Display" Height="50"
|
|
|
|
|
Grid.Row="1" Grid.Column="1" Margin="15 0 0 0"
|
|
|
|
|
Style="{StaticResource ComboBoxStyle}"/>
|
|
|
|
|
|
|
|
|
|
<TextBlock Text="박스 너비" VerticalAlignment="Center" Grid.Row="2"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream4}" Foreground="White"/>
|
|
|
|
|
<Slider Margin="15 0 0 0" Grid.Row="2" Grid.Column="1"
|
|
|
|
|
VerticalAlignment="Center" HorizontalAlignment="Left"
|
|
|
|
|
Minimum="0.1" Maximum="1.0" TickFrequency="0.05" IsSnapToTickEnabled="True"
|
|
|
|
|
Value="{Binding BoxWidth}" Width="310"/>
|
|
|
|
|
<TextBlock Text="{Binding BoxWidth, StringFormat=F2}"
|
|
|
|
|
Margin="15 0" Grid.Row="2" Grid.Column="2"
|
|
|
|
|
VerticalAlignment="Center" HorizontalAlignment="Right"
|
|
|
|
|
FontSize="18" FontFamily="{StaticResource SCDream4}" Foreground="White"/>
|
|
|
|
|
<Grid Margin="15 5">
|
|
|
|
|
<Grid.Resources>
|
|
|
|
|
<Style TargetType="FrameworkElement">
|
|
|
|
|
<Setter Property="Visibility" Value="Collapsed"/>
|
|
|
|
|
</Style>
|
|
|
|
|
<!-- 보이기 토글용 스타일 -->
|
|
|
|
|
<Style x:Key="VisibleWhenTrue" TargetType="FrameworkElement" BasedOn="{StaticResource {x:Type FrameworkElement}}">
|
|
|
|
|
<Style.Triggers>
|
|
|
|
|
<DataTrigger Binding="{Binding SelectedGraphType}" Value="LINE">
|
|
|
|
|
<Setter Property="Visibility" Value="Visible"/>
|
|
|
|
|
</DataTrigger>
|
|
|
|
|
<DataTrigger Binding="{Binding SelectedGraphType}" Value="STEP">
|
|
|
|
|
<Setter Property="Visibility" Value="Visible"/>
|
|
|
|
|
</DataTrigger>
|
|
|
|
|
</Style.Triggers>
|
|
|
|
|
</Style>
|
|
|
|
|
<Style x:Key="VisibleWhenScatter" TargetType="FrameworkElement" BasedOn="{StaticResource {x:Type FrameworkElement}}">
|
|
|
|
|
<Style.Triggers>
|
|
|
|
|
<DataTrigger Binding="{Binding SelectedGraphType}" Value="SCATTER">
|
|
|
|
|
<Setter Property="Visibility" Value="Visible"/>
|
|
|
|
|
</DataTrigger>
|
|
|
|
|
</Style.Triggers>
|
|
|
|
|
</Style>
|
|
|
|
|
<Style x:Key="VisibleWhenBox" TargetType="FrameworkElement" BasedOn="{StaticResource {x:Type FrameworkElement}}">
|
|
|
|
|
<Style.Triggers>
|
|
|
|
|
<DataTrigger Binding="{Binding SelectedGraphType}" Value="BOX">
|
|
|
|
|
<Setter Property="Visibility" Value="Visible"/>
|
|
|
|
|
</DataTrigger>
|
|
|
|
|
</Style.Triggers>
|
|
|
|
|
</Style>
|
|
|
|
|
</Grid.Resources>
|
|
|
|
|
|
|
|
|
|
<!-- LINE/STEP: 다중 선택 -->
|
|
|
|
|
<Grid Style="{StaticResource VisibleWhenTrue}">
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="40"/>
|
|
|
|
|
<RowDefinition/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<TextBlock Text="Y축 (복수 선택)" VerticalAlignment="Center"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream4}" Foreground="White"/>
|
|
|
|
|
<!-- SelectedItems 바인딩을 위한 간단 Behavior는 아래 3) 참고 -->
|
|
|
|
|
<Border Grid.Row="1" CornerRadius="10" Background="White">
|
|
|
|
|
<ListBox ItemsSource="{Binding YFieldCandidates}"
|
|
|
|
|
DisplayMemberPath="Display"
|
|
|
|
|
SelectionMode="Extended"
|
|
|
|
|
helper:MultiSelectBehavior.SelectedItems="{Binding SelectedYFields, Mode=OneWay}"
|
|
|
|
|
Height="Auto" Background="White"
|
|
|
|
|
FontSize="16" FontWeight="Bold"
|
|
|
|
|
Style="{StaticResource MaterialDesignFilterChipListBox}"/>
|
|
|
|
|
</Border>
|
|
|
|
|
<!-- 옵션 -->
|
|
|
|
|
<StackPanel Orientation="Horizontal" Margin="0 15 0 0" Grid.Row="2">
|
|
|
|
|
<CheckBox Content="마커 표시" IsChecked="{Binding ShowMarkers}" Margin="0 0 15 0"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream4}" Foreground="White"
|
|
|
|
|
VerticalContentAlignment="Center"
|
|
|
|
|
Style="{StaticResource MaterialDesignUserForegroundCheckBox}"/>
|
|
|
|
|
<CheckBox Content="스무딩" IsChecked="{Binding UseSmoothing}"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream4}" Foreground="White"
|
|
|
|
|
VerticalContentAlignment="Center"
|
|
|
|
|
Style="{StaticResource MaterialDesignUserForegroundCheckBox}"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
<!-- SCATTER: 단일 Y + 옵션 -->
|
|
|
|
|
<Grid Style="{StaticResource VisibleWhenScatter}">
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="70"/>
|
|
|
|
|
<RowDefinition Height="70"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="80"/>
|
|
|
|
|
<ColumnDefinition/>
|
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<TextBlock Text="Y축" VerticalAlignment="Center"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream4}" Foreground="White"/>
|
|
|
|
|
<ComboBox ItemsSource="{Binding YFieldCandidates}"
|
|
|
|
|
SelectedItem="{Binding SelectedYField}"
|
|
|
|
|
DisplayMemberPath="Display" Height="50"
|
|
|
|
|
Grid.Column="1" Grid.ColumnSpan="3" Margin="15 0 0 0"
|
|
|
|
|
Style="{StaticResource ComboBoxStyle}"/>
|
|
|
|
|
|
|
|
|
|
<TextBlock Text="마커 크기" Grid.Row="1" VerticalAlignment="Center"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream4}" Foreground="White"/>
|
|
|
|
|
<Slider Grid.Row="1" Grid.Column="1" VerticalAlignment="Center" Margin="15 0 0 0"
|
|
|
|
|
Minimum="1" Maximum="15" Value="{Binding ScatterMarkerSize}" Width="280" IsSnapToTickEnabled="True" TickFrequency="1"/>
|
|
|
|
|
<TextBlock Text="{Binding ScatterMarkerSize}" Margin="15 0"
|
|
|
|
|
Grid.Row="1" Grid.Column="2" VerticalAlignment="Center"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream4}" Foreground="White"/>
|
|
|
|
|
<CheckBox Content="회귀선" IsChecked="{Binding ShowRegression}"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream4}" Foreground="White"
|
|
|
|
|
Margin="0" Grid.Row="1" Grid.Column="3"
|
|
|
|
|
VerticalContentAlignment="Center"
|
|
|
|
|
Style="{StaticResource MaterialDesignUserForegroundCheckBox}"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
<!-- BOX: 값 필드 + 그룹 필드 + 옵션 -->
|
|
|
|
|
<Grid Style="{StaticResource VisibleWhenBox}">
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="70"/>
|
|
|
|
|
<RowDefinition Height="70"/>
|
|
|
|
|
<RowDefinition Height="70"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="80"/>
|
|
|
|
|
<ColumnDefinition/>
|
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<TextBlock Text="값 필드" VerticalAlignment="Center"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream4}" Foreground="White"/>
|
|
|
|
|
<ComboBox ItemsSource="{Binding YFieldCandidates}"
|
|
|
|
|
SelectedItem="{Binding SelectedYField}"
|
|
|
|
|
DisplayMemberPath="Display" Height="50"
|
|
|
|
|
Grid.Column="1" Margin="15 0 0 0"
|
|
|
|
|
Style="{StaticResource ComboBoxStyle}"/>
|
|
|
|
|
|
|
|
|
|
<TextBlock VerticalAlignment="Center" Grid.Row="1"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream4}" Foreground="White">
|
|
|
|
|
<Run Text="그룹"/>
|
|
|
|
|
<LineBreak/>
|
|
|
|
|
<Run Text="(박스 기준)" FontSize="14"/>
|
|
|
|
|
</TextBlock>
|
|
|
|
|
<ComboBox ItemsSource="{Binding GroupFieldCandidates}"
|
|
|
|
|
SelectedItem="{Binding SelectedGroupField}"
|
|
|
|
|
DisplayMemberPath="Display" Height="50"
|
|
|
|
|
Grid.Row="1" Grid.Column="1" Margin="15 0 0 0"
|
|
|
|
|
Style="{StaticResource ComboBoxStyle}"/>
|
|
|
|
|
|
|
|
|
|
<TextBlock Text="박스 너비" VerticalAlignment="Center" Grid.Row="2"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream4}" Foreground="White"/>
|
|
|
|
|
<Slider Margin="15 0 0 0" Grid.Row="2" Grid.Column="1"
|
|
|
|
|
VerticalAlignment="Center" HorizontalAlignment="Left"
|
|
|
|
|
Minimum="0.1" Maximum="1.0" TickFrequency="0.05" IsSnapToTickEnabled="True"
|
|
|
|
|
Value="{Binding BoxWidth}" Width="310"/>
|
|
|
|
|
<TextBlock Text="{Binding BoxWidth, StringFormat=F2}"
|
|
|
|
|
Margin="15 0" Grid.Row="2" Grid.Column="2"
|
|
|
|
|
VerticalAlignment="Center" HorizontalAlignment="Right"
|
|
|
|
|
FontSize="18" FontFamily="{StaticResource SCDream4}" Foreground="White"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Grid>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
|
|
<StackPanel Orientation="Horizontal" Margin="15 0" Grid.Row="1" HorizontalAlignment="Right">
|
|
|
|
|
<Button Content="그래프 생성" Style="{StaticResource MaterialDesignFlatLightBgButton}"
|
|
|
|
|
FontWeight="Bold" Command="{Binding DrawGraphCommand}"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Border>
|
|
|
|
|
|
|
|
|
|
<Border Grid.Column="1" Margin="0 20 20 20"
|
|
|
|
|
|