public EmployeeFindDialog(EmployeeSelect employeeSelect)
        {
            InitializeComponent();

            this.employeeSelect = employeeSelect;

            if (!employeeSelect.Places)
            {
                rbPlace.Enabled = false;
            }
        }
Beispiel #2
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            var resources = new System.ComponentModel.ComponentResourceManager(typeof(EmployeeDialog));

            this.employeeSelect = new EmployeeSelect();
            this.panel1         = new System.Windows.Forms.Panel();
            this.buttonCancel   = new System.Windows.Forms.Button();
            this.buttonOK       = new System.Windows.Forms.Button();
            this.buttonFind     = new System.Windows.Forms.Button();
            this.panel1.SuspendLayout();
            this.SuspendLayout();
            //
            // employeeSelect
            //
            resources.ApplyResources(this.employeeSelect, "employeeSelect");
            this.employeeSelect.ConnectionString  = null;
            this.employeeSelect.ConnectionString2 = null;
            this.employeeSelect.ExternServer      = null;
            this.employeeSelect.Free         = false;
            this.employeeSelect.FreeLocked   = false;
            this.employeeSelect.Guests       = false;
            this.employeeSelect.Insiders     = false;
            this.employeeSelect.MultiSelect  = true;
            this.employeeSelect.Name         = "employeeSelect";
            this.employeeSelect.OptionFolder = null;
            this.employeeSelect.PlaceID      = 0;
            this.employeeSelect.Places       = false;
            this.employeeSelect.PlacesLocked = false;
            this.employeeSelect.Status       = EmpStatus.Resting;
            //
            // panel1
            //
            resources.ApplyResources(this.panel1, "panel1");
            this.panel1.Controls.Add(this.buttonCancel);
            this.panel1.Controls.Add(this.buttonOK);
            this.panel1.Controls.Add(this.buttonFind);
            this.panel1.Name = "panel1";
            //
            // buttonCancel
            //
            resources.ApplyResources(this.buttonCancel, "buttonCancel");
            this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.buttonCancel.Name         = "buttonCancel";
            //
            // buttonOK
            //
            resources.ApplyResources(this.buttonOK, "buttonOK");
            this.buttonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.buttonOK.Name         = "buttonOK";
            //
            // buttonFind
            //
            resources.ApplyResources(this.buttonFind, "buttonFind");
            this.buttonFind.Name   = "buttonFind";
            this.buttonFind.Click += new System.EventHandler(this.buttonFind_Click);
            //
            // EmployeeDialog
            //
            this.AcceptButton = this.buttonOK;
            resources.ApplyResources(this, "$this");
            this.CancelButton = this.buttonCancel;
            this.Controls.Add(this.employeeSelect);
            this.Controls.Add(this.panel1);
            this.DoubleBuffered = true;
            this.KeyPreview     = true;
            this.MaximizeBox    = false;
            this.MinimizeBox    = false;
            this.Name           = "EmployeeDialog";
            this.ShowInTaskbar  = false;
            this.Closing       += new System.ComponentModel.CancelEventHandler(this.EmployeeDialog_Closing);
            this.panel1.ResumeLayout(false);
            this.ResumeLayout(false);
        }