Beispiel #1
0
        public ConfigurerPrint(Configurer parent, string identifier, List <BoundRect> rects, Bitmap image)
        {
            this.parent     = parent;
            this.identifier = identifier;
            this.image      = image;

            InitializeComponent();
            printSelectionPanel1.Initialize(image, this);
            printSelectionPanel1.SetRects(rects);
        }
Beispiel #2
0
        public ConfigurerPrint(Configurer parent, Bitmap image)
        {
            this.parent = parent;
            this.image  = image;
            readOnly    = true;

            InitializeComponent();
            printSelectionPanel1.Initialize(image, this);
            printSelectionPanel1.Enabled = false;
        }
Beispiel #3
0
        private void configurerToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Configurer c = new Configurer();

            c.ShowDialog();
        }