Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Visualization.Test/3.2/LegendForm.cs @ 1530

Last change on this file since 1530 was 1530, checked in by gkronber, 15 years ago

Moved source files of plugins Hive ... Visualization.Test into version-specific sub-folders. #576

File size: 548 bytes
Line 
1using System.Drawing;
2using System.Windows.Forms;
3using HeuristicLab.Visualization.Legend;
4
5namespace HeuristicLab.Visualization.Test {
6  public partial class LegendForm : Form {
7    public LegendForm() {
8      InitializeComponent();
9
10      CreateLegendShape();
11    }
12
13    private void CreateLegendShape() {
14      LegendShape ls = new LegendShape();
15      ls.AddLegendItem(new LegendItem("test", Color.Black, 5));
16      ls.AddLegendItem(new LegendItem("test2", Color.Red, 5));
17
18      canvasUI.Canvas.AddShape(ls);
19    }
20  }
21}
Note: See TracBrowser for help on using the repository browser.