cxi保存ウィンドウの位置操作類(順列化とファイル読み書き機能)


記録ウィンドウが最後に閉じた位置とサイズ

namespace PDSafe.Base
{
    public class Setting
    {
        ///<summary>
        ///
        ///</summary>
        public static byte[] SerializeObject(object obj)
        {
            if (obj == null)
                return null;
            MemoryStream ms = new MemoryStream();
            BinaryFormatter formatter = new BinaryFormatter();
            formatter.Serialize(ms, obj);
            ms.Position = 0;
            byte[] bytes = new byte[ms.Length];
            ms.Read(bytes, 0, bytes.Length);
            ms.Close();
            return bytes;
        }

        ///<summary>
        ///
        ///</summary>
        public static object DeserializeObject(byte[] bytes)
        {
            object obj = null;
            if (bytes == null)
                return obj;
            MemoryStream ms = new MemoryStream(bytes);
            ms.Position = 0;
            BinaryFormatter formatter = new BinaryFormatter();
            try
            {
                obj = formatter.Deserialize(ms);
            }
            catch { obj = null; }
            ms.Close();
            return obj;
        }

        public static bool Save(string path, object value, bool isCeranew)
        {
            //
            FileStream fs;
            if ((!File.Exists(path)) && isCeranew)
            {
                try
                {
                    fs = File.Create(path);
                }
                catch
                {
                    return false;
                }
            }
            //
            else
            {
                try
                {
                    fs = File.Open(path, FileMode.Open, FileAccess.Write);
                }
                catch
                {
                    return false;
                }

            }
            //
            byte[] buffer = SerializeObject(value);

            try
            {
                for (long i = 0; i < buffer.LongLength; i++)
                    fs.WriteByte(buffer[i]);
            }
            catch
            {
                return false;
            }
            fs.Close();
            return true;
        }

        public static object Read(string path)
        {
            FileStream fs;
            try
            {
                fs = File.OpenRead(path);
            }
            catch
            {
                return null;
            }

            //
            StreamReader sreader = new StreamReader(fs);
            string str = sreader.ReadToEnd();
            fs.Close();
            sreader.Close();
            //
            byte[] buffer = Encoding.Default.GetBytes(str);
            return DeserializeObject(buffer);
        }
        [Serializable]
        public struct FormSizeandLocation
        {
            public int SizeW;
            public int SizeH;
            public int LocationX;
            public int LocationY;
            public int Style;
        }
      private static  Setting.FormSizeandLocation fsp = new Setting.FormSizeandLocation();
        public static void AddRenewFormSizeControl(Form form)
        {
            form.FormClosing += new FormClosingEventHandler(FormcloseEvent);
            form.Load += new EventHandler(FormloadEvent);
         }
        private static void FormcloseEvent(object sender, EventArgs e)
        {
            Form form = (Form)sender;
            switch (form.WindowState)
            {
                case FormWindowState.Maximized:
                    fsp.Style = 2;

                    fsp.SizeW = form.Width;
                    fsp.SizeH = form.Height;
                    fsp.LocationX = form.Location.X;
                    fsp.LocationY = form.Location.Y;
                    break;
                case FormWindowState.Minimized:
                    fsp.Style = 1;
                    break;
                case FormWindowState.Normal:
                    fsp.Style = 0;

                    fsp.SizeW = form.Width;
                    fsp.SizeH = form.Height;
                    fsp.LocationX = form.Location.X;
                    fsp.LocationY = form.Location.Y;
                    break;
            }
            Setting.Save(Directory.GetCurrentDirectory() + @"\" + "Location.set", fsp, true);
        }
        private static void FormloadEvent(object sender, EventArgs e)
        {
            Form form = (Form)sender;
            object result = Setting.Read(Directory.GetCurrentDirectory() + @"\" + "Location.set");
            if (result != null)
            {
                fsp = (Setting.FormSizeandLocation)result;
                switch (fsp.Style)
                {
                    case 2:
                        form.WindowState = FormWindowState.Maximized;
                        break;
                    default:
                        form.WindowState = FormWindowState.Normal;
                        break;
                }
                form.Left = fsp.LocationX;
                form.Top = fsp.LocationY;
                form.Size = new Size(fsp.SizeW, fsp.SizeH);

            }
        }
    }
}

基本機能は構造体タイプのデータブックSave(filePath,value,true)を保存します。保存されたデータのファイルを読み込み、その中から読み込むと、この構造体は箱詰めされています。やるべきのは、箱を開けるだけです。object relt=Save(filePath、保存するデータのインスタンス、true)if(result!=null)//ファイルの存在を確認し、読み込みに成功しました。
この二つの機能を組み合わせて、ウィンドウの位置と大きさを記録してもいいですか?もちろん、まずやるべきことは、大きさと位置、状態を保存するための構造体を宣言します。
保存と設定を行います。コード108-172行は全部その処理です。How does it work?ユーザーにウィンドウインスタンスの購読例のロードとCloosingイベントを提供させ、ロードイベントで保存されたファイルを読み込み、インスタンスの位置とサイズを変更し、closingイベントでサイズと位置をAddrenewFormSizoControl(this)に保存する。 //コードの一つだけが必要です。ぜひInitialize Component関数の後に書いてください。ロードイベントには書いてはいけません。保存されているファイルは作業経路+Location.setです。あなたも自分で書き換えることができます。