2019-06-16 23:34:47 +00:00
|
|
|
<!--
|
|
|
|
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.
|
|
|
|
-->
|
|
|
|
|
2019-07-20 20:28:10 +00:00
|
|
|
<Window x:Class="SourceGen.WpfGui.EditAddress"
|
2019-06-16 23:34:47 +00:00
|
|
|
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"
|
2019-07-20 20:28:10 +00:00
|
|
|
xmlns:local="clr-namespace:SourceGen.WpfGui"
|
2019-06-16 23:34:47 +00:00
|
|
|
mc:Ignorable="d"
|
|
|
|
Title="Set Address"
|
|
|
|
SizeToContent="WidthAndHeight" ResizeMode="NoResize"
|
|
|
|
ShowInTaskbar="False" WindowStartupLocation="CenterOwner"
|
2019-07-21 22:24:39 +00:00
|
|
|
ContentRendered="Window_ContentRendered">
|
2019-06-16 23:34:47 +00:00
|
|
|
|
|
|
|
<StackPanel Margin="8">
|
|
|
|
<TextBlock Text="Enter 16-bit or 24-bit address in hexadecimal, e.g. $1000 or 00/be00."/>
|
|
|
|
<TextBlock Text="Leave the field blank to remove the address override."/>
|
|
|
|
|
|
|
|
<StackPanel Orientation="Horizontal" Margin="0,8,0,0">
|
|
|
|
<TextBlock Text="Address:"/>
|
2019-07-05 22:05:42 +00:00
|
|
|
<!--<TextBlock Text="$" FontFamily="{StaticResource GeneralMonoFont}" Margin="4,2,0,0"/>-->
|
|
|
|
<TextBox Name="addrTextBox" Width="100" Margin="4,1,0,0"
|
2019-06-16 23:34:47 +00:00
|
|
|
FontFamily="{StaticResource GeneralMonoFont}"
|
|
|
|
Text="{Binding Path=AddressText, UpdateSourceTrigger=PropertyChanged}"
|
|
|
|
IsInactiveSelectionHighlightEnabled="True"
|
|
|
|
TextChanged="TextBox_TextChanged">
|
|
|
|
<TextBox.Resources>
|
|
|
|
<!-- default non-focus highlight color is nearly invisible -->
|
|
|
|
<SolidColorBrush x:Key="{x:Static SystemColors.InactiveSelectionHighlightBrushKey}"
|
|
|
|
Color="LightBlue"/>
|
|
|
|
</TextBox.Resources>
|
|
|
|
</TextBox>
|
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,8,0,0">
|
2019-07-05 22:05:42 +00:00
|
|
|
<Button Name="okButton" Content="OK" IsDefault="True" Width="70"
|
|
|
|
IsEnabled="{Binding IsValid}" Click="OkButton_Click"/>
|
2019-06-16 23:34:47 +00:00
|
|
|
<Button Name="cancelButton" Content="Cancel" IsCancel="True"
|
|
|
|
Width="70" Margin="4,0,0,0"/>
|
|
|
|
</StackPanel>
|
|
|
|
</StackPanel>
|
|
|
|
</Window>
|