Ejemplo n.º 1
0
        // Funkce pro nacteni pozic oken
        public static void FormSettingLoad(Form frmForm)
        {
            // Osetreni na zaporny hodnoty
            int iTop  = int.Parse(INIFiles.INI_GetSetting("Size", frmForm.Name + "Top", "0").ToString());
            int iLeft = int.Parse(INIFiles.INI_GetSetting("Size", frmForm.Name + "Left", "0").ToString());

            if (iTop < 0)
            {
                iTop = 0;
            }
            if (iLeft < 0)
            {
                iLeft = 0;
            }

            frmForm.Top  = iTop;
            frmForm.Left = iLeft;

            if ((frmForm.FormBorderStyle == FormBorderStyle.Sizable || frmForm.FormBorderStyle == FormBorderStyle.SizableToolWindow) &&
                int.Parse(INIFiles.INI_GetSetting("Size", frmForm.Name + "Width", "100").ToString()) > 0)
            {
                frmForm.Width  = int.Parse(INIFiles.INI_GetSetting("Size", frmForm.Name + "Width", "300").ToString());
                frmForm.Height = int.Parse(INIFiles.INI_GetSetting("Size", frmForm.Name + "Height", "300").ToString());
            }

            // Vynutime zobrazeni okna
            Application.DoEvents();

            IterateControl(frmForm.Controls, FormActions.FormActionLoad, frmForm.Name);
        }
Ejemplo n.º 2
0
        // Funkce pro najiti vsech ListView na formu. iAction=0 Save, iAction=1 Load.
        private static void IterateControl(Control.ControlCollection ctrControls, FormActions iAction, string sFormPrefix)
        {
            foreach (Control ctrControl in ctrControls)
            {
                if (ctrControl.Controls.Count > 0)
                {
                    IterateControl(ctrControl.Controls, iAction, sFormPrefix);
                }

                // Pokud je to listviw, prolezeme jeho columny a ulozime
                if (ctrControl.GetType().ToString() == "System.Windows.Forms.ListView")
                {
                    ListView lsvListView = (ListView)ctrControl;

                    foreach (ColumnHeader colColumn in lsvListView.Columns)
                    {
                        // Pokud se jedna o Load, tak nacteme, jinak ulozime
                        if (iAction == FormActions.FormActionLoad)
                        {
                            //MessageBox.Show(sFormPrefix + "_" + lsvListView.Name + "_column" + colColumn.Index.ToString() + " = " + regKeySize.GetValue(sFormPrefix + "_" + lsvListView.Name + "_column" + colColumn.Index.ToString(), "80"));
                            //MessageBox.Show(Convert.ToString(Convert.ToInt32(regKeySize.GetValue(sFormPrefix + "_" + lsvListView.Name + "_column" + colColumn.Index.ToString(), "80"))));
                            //colColumn.Width = Convert.ToInt32(regKeySize.GetValue(sFormPrefix + "_" + lsvListView.Name + "_column" + colColumn.Index.ToString(), "80"));
                            colColumn.Width = Convert.ToInt32(INIFiles.INI_GetSetting("Size", sFormPrefix + "_" + lsvListView.Name + "_column" + colColumn.Index.ToString(), "80"));
                        }
                        else
                        {
                            // Ukladame
                            //regKeySize.SetValue(sFormPrefix + "_" + lsvListView.Name + "_column" + colColumn.Index.ToString(), colColumn.Width.ToString());
                            INIFiles.INI_SetSetting("Size", sFormPrefix + "_" + lsvListView.Name + "_column" + colColumn.Index.ToString(), colColumn.Width.ToString());
                        }
                    }
                }
                else if (ctrControl.GetType().ToString() == "System.Windows.Forms.SplitContainer")
                {
                    // Pretypujeme objekt na spravny
                    SplitContainer scSplit = (SplitContainer)ctrControl;

                    if (iAction == FormActions.FormActionLoad)
                    {
                        scSplit.SplitterDistance = Convert.ToInt32(INIFiles.INI_GetSetting("Size", sFormPrefix + "_" + scSplit.Name + "_distance", "20"));
                    }
                    else
                    {
                        INIFiles.INI_SetSetting("Size", sFormPrefix + "_" + scSplit.Name + "_distance", scSplit.SplitterDistance.ToString());
                    }
                }
            }
        }
Ejemplo n.º 3
0
 // Nacteni hodnoty z registru
 public static string GetKey(string sKey, string sDefaultValue)
 {
     return(INIFiles.INI_GetSetting("General", sKey, sDefaultValue));
 }