Esempio n. 1
0
        private void InitEle()
        {
            lstContact.Scrollable  = true;
            lstSchedule.Scrollable = true;
            Grid contactCols = XmlService.GetGridSetting()["Contacter"];

            BindGridColumn(lstContact, contactCols.Columns);
            Grid carScheCols = XmlService.GetGridSetting()["CarSchedule"];

            BindGridColumn(lstSchedule, carScheCols.Columns);
        }
Esempio n. 2
0
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            InitSQLiteManage.QueryCityDataFromSQLite();
            XmlService.GetAppSetting();

            TestRegex();
            InitFakeServices();
            InitRegisterForm();
            Form acc = FacadeFactory.Instance.RetrieveMediator(typeof(WebFrm).Name) as Form;

            Application.Run(acc);//cef 只能单进程

            /*
             * System.Exception:“CEF can only be initialized once per process. This is a limitation of the underlying CEF/Chromium framework.
             * You can change many (not all) settings at runtime through RequestContext.SetPreference.
             * See https://github.com/cefsharp/CefSharp/wiki/General-Usage#request-context-browser-isolation Use Cef.IsInitialized to guard against this exception.
             * If you are seeing this unexpectedly then you are likely calling Cef.Initialize after you've created an instance of ChromiumWebBrowser,
             * it must be before the first instance is created.”
             *
             */
        }