Mini Kabibi Habibi

Current Path : C:/Users/Public/Documents/DXperience 13.1 Demos/WinForms/CS/TreeListMainDemo/
Upload File :
Current File : C:/Users/Public/Documents/DXperience 13.1 Demos/WinForms/CS/TreeListMainDemo/ExportForm.cs

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;

namespace DevExpress.XtraTreeList.Demos {
	public partial class ExportForm : DevExpress.XtraEditors.XtraForm {
		public ExportForm(Form parent) {
			InitializeComponent();
			this.ClientSize = new Size( 
				pictureBox1.Image.Width + this.DockPadding.All * 2, 
				pictureBox1.Image.Height + this.DockPadding.All * 2);
			if(parent != null) {
				Left = parent.Left + (parent.Width - Width) / 2;
				Top = parent.Top + (parent.Height - Height) / 2;
			}
		}
	}
}