mirror of
https://github.com/fadden/6502bench.git
synced 2025-04-05 01:30:10 +00:00
Tweaks
This commit is contained in:
parent
630f7f0f87
commit
4c43b4063a
@ -527,8 +527,8 @@ limitations under the License.
|
||||
</Grid>
|
||||
|
||||
<!-- Launch panel. Either this or the code list panel will be visible. -->
|
||||
<Grid Name="launchPanel" Grid.Column="2"
|
||||
Visibility="{Binding Path=LaunchPanelVisibility}" d:IsHidden="True">
|
||||
<Grid Grid.Column="2" Name="launchPanel" Visibility="{Binding Path=LaunchPanelVisibility}"
|
||||
d:IsHidden="True">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="*"/>
|
||||
@ -628,8 +628,8 @@ limitations under the License.
|
||||
|
||||
<!-- A GridSplitter would be nice to make the height adjustable, but I had
|
||||
trouble making everything disappear cleanly, particularly w.r.t. the splitter
|
||||
working correctly after hide + re-show. (This might have been due to a more
|
||||
general issue... should revisit this someday.) See
|
||||
working correctly after hide + re-show. (This might have been due to issue #52...
|
||||
should revisit this someday.) See
|
||||
https://stackoverflow.com/q/2502178/294248 for suggestions. -->
|
||||
<!--<GridSplitter Name="messageLogSplitter" Grid.Row="1" Height="4"
|
||||
HorizontalAlignment="Stretch" VerticalAlignment="Center"
|
||||
|
@ -281,7 +281,7 @@ namespace SourceGen.WpfGui {
|
||||
/// (Intended for use from XAML.)
|
||||
/// </summary>
|
||||
public Visibility LaunchPanelVisibility {
|
||||
get { return mShowCodeListView ? Visibility.Hidden : Visibility.Visible; }
|
||||
get { return mShowCodeListView ? Visibility.Collapsed : Visibility.Visible; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@ -289,7 +289,7 @@ namespace SourceGen.WpfGui {
|
||||
/// (Intended for use from XAML.)
|
||||
/// </summary>
|
||||
public Visibility CodeListVisibility {
|
||||
get { return mShowCodeListView ? Visibility.Visible : Visibility.Hidden; }
|
||||
get { return mShowCodeListView ? Visibility.Visible : Visibility.Collapsed; }
|
||||
}
|
||||
|
||||
public FontFamily CodeListFontFamily {
|
||||
|
Loading…
x
Reference in New Issue
Block a user