mirror of
https://github.com/fadden/6502bench.git
synced 2024-11-04 15:05:03 +00:00
80 lines
3.6 KiB
Plaintext
80 lines
3.6 KiB
Plaintext
|
<!--
|
||
|
Copyright 2019 faddenSoft
|
||
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
-->
|
||
|
|
||
|
<Window x:Class="SourceGenWPF.WpfGui.EditDefSymbol"
|
||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
xmlns:local="clr-namespace:SourceGenWPF.WpfGui"
|
||
|
mc:Ignorable="d"
|
||
|
Title="Edit Symbol"
|
||
|
SizeToContent="WidthAndHeight" ResizeMode="NoResize"
|
||
|
ShowInTaskbar="False" WindowStartupLocation="CenterOwner"
|
||
|
Loaded="Window_Loaded">
|
||
|
<Grid Margin="8">
|
||
|
<Grid.ColumnDefinitions>
|
||
|
<ColumnDefinition Width="Auto"/>
|
||
|
<ColumnDefinition Width="*"/>
|
||
|
</Grid.ColumnDefinitions>
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="Auto"/>
|
||
|
<RowDefinition Height="Auto"/>
|
||
|
<RowDefinition Height="Auto"/>
|
||
|
<RowDefinition Height="Auto"/>
|
||
|
<RowDefinition Height="Auto"/>
|
||
|
</Grid.RowDefinitions>
|
||
|
|
||
|
<TextBlock Grid.Column="0" Grid.Row="0" Text="Label:"/>
|
||
|
<StackPanel Grid.Column="1" Grid.Row="0">
|
||
|
<TextBox Name="labelTextBox" Margin="0,1,0,0"
|
||
|
FontFamily="{StaticResource GeneralMonoFont}"
|
||
|
TextChanged="LabelTextBox_TextChanged"/>
|
||
|
<TextBlock Name="labelNotesLabel" Text="• 2+ alphanumerics, starting with letter" Margin="0,4,0,0"/>
|
||
|
<TextBlock Name="labelUniqueLabel" Text="• Unique among project symbols" Margin="0,4,0,16"/>
|
||
|
</StackPanel>
|
||
|
|
||
|
<TextBlock Grid.Column="0" Grid.Row="1" Text="Value:"/>
|
||
|
<StackPanel Grid.Column="1" Grid.Row="1">
|
||
|
<TextBox Name="valueTextBox" Margin="0,1,0,0"
|
||
|
FontFamily="{StaticResource GeneralMonoFont}"
|
||
|
TextChanged="ValueTextBox_TextChanged"/>
|
||
|
<TextBlock Name="valueNotesLabel" Text="• Decimal, hex ($), or binary (%)" Margin="0,4,0,16"/>
|
||
|
</StackPanel>
|
||
|
|
||
|
<TextBlock Grid.Column="0" Grid.Row="2" Text="Comment:" Margin="0,0,8,0"/>
|
||
|
<StackPanel Grid.Column="1" Grid.Row="2">
|
||
|
<TextBox Name="commentTextBox" Margin="0,1,0,0"
|
||
|
FontFamily="{StaticResource GeneralMonoFont}"/>
|
||
|
<TextBlock Text="• Optional" Margin="0,4,0,16"/>
|
||
|
</StackPanel>
|
||
|
|
||
|
<GroupBox Grid.Column="0" Grid.Row="3" Grid.ColumnSpan="2" Header="Symbol Type" Padding="4">
|
||
|
<StackPanel Orientation="Horizontal">
|
||
|
<RadioButton Name="addressRadioButton" Content="Address"/>
|
||
|
<RadioButton Name="constantRadioButton" Content="Constant" Margin="24,0,0,0"/>
|
||
|
</StackPanel>
|
||
|
</GroupBox>
|
||
|
|
||
|
<StackPanel Grid.Column="1" Grid.Row="4" Margin="0,16,0,0"
|
||
|
Orientation="Horizontal" HorizontalAlignment="Right">
|
||
|
<Button Content="OK" Width="70" IsDefault="True" IsEnabled="{Binding IsValid}"
|
||
|
Click="OkButton_Click"/>
|
||
|
<Button Content="Cancel" Width="70" IsCancel="True" Margin="8,0,0,0"/>
|
||
|
</StackPanel>
|
||
|
</Grid>
|
||
|
</Window>
|