Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/DynamicDataDisplay/Charts/Isolines/IsolineTrackingGraph.xaml @ 13834

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

#2283 added GUI and charts; fixed MCTS

File size: 861 bytes
Line 
1<d3:IsolineGraphBase x:Class="Microsoft.Research.DynamicDataDisplay.Charts.IsolineTrackingGraph"
2    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3  xmlns:d3="clr-namespace:Microsoft.Research.DynamicDataDisplay.Charts.Isolines"
4    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
5  <d3:IsolineGraphBase.Style>
6    <Style TargetType="{x:Type d3:IsolineGraphBase}">
7      <Setter Property="Cursor" Value="Cross"/>
8      <Setter Property="StrokeThickness" Value="3"/>
9    </Style>
10  </d3:IsolineGraphBase.Style>
11
12  <Canvas Name="content" Background="Transparent">
13    <Grid Name="labelGrid" Visibility="Hidden" Panel.ZIndex="1">
14      <Rectangle RadiusX="10" RadiusY="10" Stroke="DarkGray"
15             StrokeThickness="1" Fill="#AAFFFFFF"/>
16      <TextBlock Name="textBlock" Margin="10,5,10,5"/>
17    </Grid>
18  </Canvas>
19</d3:IsolineGraphBase>
Note: See TracBrowser for help on using the repository browser.