示例#1
0
        public AppWindow(string Config)
        {
            InitializeComponent();
            SubAppConfigManager manager = new SubAppConfigManager(Config);

            test.Text = manager.GetText();
            double height = 0;

            if (double.TryParse(manager.GetText(), out height))
            {
                Height = height;
            }
        }