Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 1485 was 1240, checked in by mstoeger, 15 years ago

Transformations on shapes are possible outside of the Draw method. (#424)

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