From 40cd5e015bf24a4ce76b190920413f4cf4ba9f48 Mon Sep 17 00:00:00 2001
From: lu <99954486@qq.com>
Date: 星期二, 25 二月 2025 16:54:31 +0800
Subject: [PATCH] 销售
---
DevApp/Gs.DevApp/Program.cs | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/DevApp/Gs.DevApp/Program.cs b/DevApp/Gs.DevApp/Program.cs
index e411b96..fc262cf 100644
--- a/DevApp/Gs.DevApp/Program.cs
+++ b/DevApp/Gs.DevApp/Program.cs
@@ -2,6 +2,8 @@
using System.Diagnostics;
using System.IO;
using System.Windows.Forms;
+using CefSharp.WinForms;
+using CefSharp;
using Gs.DevApp.DevFrm;
namespace Gs.DevApp
@@ -36,9 +38,11 @@
/// </summary>
private static void _startLogin()
{
- //Application.Run(new TestForm.XtraForm2());
+ //Application.Run(new XtraForm1());
//return;
-
+ CefSettings settings = new CefSettings();
+ settings.Locale = "zh-CN";
+ Cef.Initialize(settings);
var fmLogin = new FrmLogin();
if (fmLogin.IsDisposed == false)
{
--
Gitblit v1.9.3