mirror of
https://github.com/fadden/6502bench.git
synced 2024-12-04 11:49:58 +00:00
acfbfcb642
Because of the way data virtualization works (or doesn't) in WPF, this was a whole lot different from WinForms. What I'm doing is pretty simple, so I avoided the complexity (and quirks) inherent to more complete data virtualization solutions. (All I really want is to not render the entire thing up front.)
65 lines
2.9 KiB
XML
65 lines
2.9 KiB
XML
<!--
|
|
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.Tests.WpfGui.GenTestRunner"
|
|
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:system="clr-namespace:System;assembly=mscorlib"
|
|
xmlns:local="clr-namespace:SourceGenWPF.Tests.WpfGui"
|
|
mc:Ignorable="d"
|
|
Title="Source Generation Test"
|
|
Width="640" Height="480" MinWidth="640" MinHeight="480"
|
|
ShowInTaskbar="False" WindowStartupLocation="CenterOwner"
|
|
Closing="Window_Closing">
|
|
|
|
<Window.Resources>
|
|
<system:String x:Key="str_RunTest">Run Test</system:String>
|
|
<system:String x:Key="str_CancelTest">Cancel</system:String>
|
|
</Window.Resources>
|
|
|
|
<DockPanel Margin="8">
|
|
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal">
|
|
<Button Name="runButton" Content="{Binding RunButtonLabel}" Width="120"
|
|
FontWeight="Bold" IsEnabled="{Binding IsNotRunning}"
|
|
Click="RunCancelButton_Click"/>
|
|
<CheckBox Content="Retain output" Margin="20,3,0,0"
|
|
IsChecked="{Binding IsOutputRetained}"/>
|
|
</StackPanel>
|
|
|
|
<RichTextBox Name="progressRichTextBox" DockPanel.Dock="Top" Height="130" Margin="0,8,0,0"
|
|
VerticalScrollBarVisibility="Auto" IsReadOnly="True">
|
|
<RichTextBox.Resources>
|
|
<!-- remove excess vertical space between paragraphs -->
|
|
<Style TargetType="{x:Type Paragraph}">
|
|
<Setter Property="Margin" Value="0"/>
|
|
</Style>
|
|
</RichTextBox.Resources>
|
|
</RichTextBox>
|
|
|
|
<ComboBox DockPanel.Dock="Top" Name="outputSelectComboBox" Margin="0,20,0,0" Width="360"
|
|
HorizontalAlignment="Left"
|
|
SelectionChanged="OutputSelectComboBox_SelectedIndexChanged"/>
|
|
|
|
<Button DockPanel.Dock="Bottom" Content="Close" Width="70" IsCancel="True"
|
|
HorizontalAlignment="Right" Margin="0,8,0,0"/>
|
|
|
|
<TextBox DockPanel.Dock="Top" Name="outputTextBox" IsReadOnly="True" Margin="0,8,0,0"
|
|
VerticalScrollBarVisibility="Auto"/>
|
|
</DockPanel>
|
|
</Window>
|