Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CEDMA-Refactoring-Ticket419/HeuristicLab.Visualization.Test/LegendForm.cs @ 1156

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

changes on LegendForm (#407)

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