Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 1156 was 1048, checked in by shofstad, 15 years ago

Legend implementation finished (#407)

File size: 714 bytes
RevLine 
[872]1using System.Drawing;
[865]2using System.Windows.Forms;
3
4namespace HeuristicLab.Visualization.Test {
5  public partial class LegendForm : Form {
6    public LegendForm() {
7      InitializeComponent();
[872]8      canvasUI.MainCanvas.WorldShape = new WorldShape(new RectangleD(0, 0, 800, 600), new RectangleD(0, 0, 800, 600));
9
10      CreateLegendShape();
11
[865]12    }
[872]13
14    private void CreateLegendShape() {
15      WorldShape mainShape = canvasUI.MainCanvas.WorldShape;
16      LegendShape ls = new LegendShape(0, 0, 100, 100, 0, Color.White);
[1048]17      ls.AddLegendItem(new LegendItem("test", Color.Black, 5));
18      ls.AddLegendItem(new LegendItem("test2", Color.Red, 5));
[872]19
20      mainShape.AddShape(ls);
21    }
[865]22  }
[872]23}
Note: See TracBrowser for help on using the repository browser.