コード例 #1
0
ファイル: Form3.cs プロジェクト: Kythik/PoE-Crafting-Helper
        private void FusingX_TextChanged(object sender, EventArgs e)
        {
            int Location = int.Parse(FusingX.Text);

            PoECrafter.Properties.Settings.Default.FusingX = Location;
            PoECrafter.Properties.Settings.Default.Save();
            Form1.UpdateLocations();
        }
コード例 #2
0
ファイル: Form3.cs プロジェクト: Kythik/PoE-Crafting-Helper
        private void ChromaticY_TextChanged(object sender, EventArgs e)
        {
            int Location = int.Parse(ChromaticY.Text);

            PoECrafter.Properties.Settings.Default.ChromaticY = Location;
            PoECrafter.Properties.Settings.Default.Save();
            Form1.UpdateLocations();
        }
コード例 #3
0
ファイル: Form3.cs プロジェクト: Kythik/PoE-Crafting-Helper
        private void JewelersY_TextChanged(object sender, EventArgs e)
        {
            int Location = int.Parse(JewelersY.Text);

            PoECrafter.Properties.Settings.Default.JewellerY = Location;
            PoECrafter.Properties.Settings.Default.Save();
            Form1.UpdateLocations();
        }
コード例 #4
0
ファイル: Form3.cs プロジェクト: Kythik/PoE-Crafting-Helper
        private void TransmutaitonY_TextChanged(object sender, EventArgs e)
        {
            int Location = int.Parse(TransmutaitonY.Text);

            PoECrafter.Properties.Settings.Default.TransmutaitonY = Location;
            PoECrafter.Properties.Settings.Default.Save();
            Form1.UpdateLocations();
        }