using System; using System.Drawing; using System.Text; using System.Windows.Forms; using DPumpHydr.WinFrmUI.Volute; namespace DPumpHydr.DesktopMain { public partial class frmMainWindowRLT : DPumpHydr.WinFrmUI.RLT.Forms.MaterialForm { //private readonly MaterialSkinManager materialSkinManager; public frmMainWindowRLT() { InitializeComponent(); this.DrawerShowIconsWhenHidden = true; this.DrawerTabControl = mainTabControl; //等待框 //DPumpHydr.WinFrmUI.RLT.Controls.ParrotSplashScreen parrotSplashScreen1 // = new DPumpHydr.WinFrmUI.RLT.Controls.ParrotSplashScreen(); //parrotSplashScreen1.AllowDragging = true; //parrotSplashScreen1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30))))); //parrotSplashScreen1.BottomText = "江苏大学...."; //parrotSplashScreen1.BottomTextColor = System.Drawing.Color.Blue; //parrotSplashScreen1.BottomTextSize = 9; //parrotSplashScreen1.EllipseCornerRadius = 15; //parrotSplashScreen1.IsEllipse = true; //parrotSplashScreen1.LoadedColor = System.Drawing.Color.DodgerBlue; //parrotSplashScreen1.ProgressBarBorder = false; //parrotSplashScreen1.ProgressBarStyle = DPumpHydr.WinFrmUI.RLT.Controls.ParrotFlatProgressBar.Style.Material; //parrotSplashScreen1.SecondsDisplayed = 1000;//1秒 //parrotSplashScreen1.ShowProgressBar = true; ////parrotSplashScreen1.SplashIcon = ((System.Drawing.Icon)(resources.GetObject("parrotSplashScreen1.SplashIcon"))); //parrotSplashScreen1.SplashSize = new System.Drawing.Size(520, 280); //parrotSplashScreen1.TopText = "欢迎使用水力设计软件"; //parrotSplashScreen1.TopTextColor = System.Drawing.Color.White; //parrotSplashScreen1.TopTextSize = 36; //parrotSplashScreen1.UnloadedColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30))))); //parrotSplashScreen1.InitializeLoader(this); //原始dock界面控件 //DPumpHydr.WinFrmUI.Volute.dockCtrl原始 mainViewPage1 // = new DPumpHydr.WinFrmUI.Volute.dockCtrl原始(); //mainViewPage1.Dock = DockStyle.Fill; //mainViewPage1.Location = new System.Drawing.Point(0, 0); //mainViewPage1.Name = "mainViewPage1"; //mainViewPage1.Size = new System.Drawing.Size(1184, 753); //mainViewPage1.TabIndex = 0; //tabPage1.Controls.Add(mainViewPage1); DPumpHydr.WinFrmUI.Volute.dockCtrl测试 mainViewPage1 = new DPumpHydr.WinFrmUI.Volute.dockCtrl测试(); mainViewPage1.Dock = DockStyle.Fill; mainViewPage1.Location = new System.Drawing.Point(0, 0); mainViewPage1.Name = "mainViewPage1"; mainViewPage1.Size = new System.Drawing.Size(1184, 753); mainViewPage1.TabIndex = 0; tabPage1.Controls.Add(mainViewPage1); } } }