Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/DynamicDataDisplay/Charts/Navigation/SimpleNavigationBar.xaml @ 12503

Last change on this file since 12503 was 12503, checked in by aballeit, 9 years ago

#2283 added GUI and charts; fixed MCTS

File size: 875 bytes
Line 
1<UserControl x:Class="Microsoft.Research.DynamicDataDisplay.Charts.Navigation.SimpleNavigationBar"
2    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4    Height="300" Width="300">
5  <Grid>
6    <Grid.RowDefinitions>
7      <RowDefinition Height="*" />
8      <RowDefinition Height="*" />
9      <RowDefinition Height="*" />
10    </Grid.RowDefinitions>
11    <Grid.ColumnDefinitions>
12      <ColumnDefinition Width="*" />
13      <ColumnDefinition Width="*" />
14      <ColumnDefinition Width="*" />
15    </Grid.ColumnDefinitions>
16    <RepeatButton Name="leftButton" Grid.Row="1" Grid.Column="0"/>
17    <RepeatButton Name="upButton" Grid.Row="0" Grid.Column="1"/>
18    <RepeatButton Name="rightButton" Grid.Row="1" Grid.Column="2"/>
19    <RepeatButton Name="downButton" Grid.Column="1" Grid.Row="2"/>
20  </Grid>
21</UserControl>
Note: See TracBrowser for help on using the repository browser.