1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace centralController
- {
- public partial class FormNumberMachinePreview : Form
- {
- TableLayoutPanel tlp;
- PictureBox pb;
- public FormNumberMachinePreview(string title,PictureBox pb,TableLayoutPanel tlp)
- {
- InitializeComponent();
- this.Text = title;
- pb.Dock = System.Windows.Forms.DockStyle.Fill;
- Controls.Add(pb);
- this.tlp = tlp;
- this.pb = pb;
- }
- private void FormNumberMachinePreview_FormClosing(object sender, FormClosingEventArgs e)
- {
- if (tlp != null && pb != null)
- {
- tlp.Controls.Add(pb, 0, 1);
- }
- }
- }
- }
|