winform+dev的前后台分离标准项目
lg
2024-08-29 fe25786d74d5387d16b490c8c0ef7ad6da2c821c
DevApp/Gs.DevApp/UserControl/ShowDialogForm.cs
@@ -112,7 +112,7 @@
            this.maxProcess = _maxProcess > this.MinProcess ? _maxProcess : MinProcess;
            
            lblCaption.Text = this.Caption;
            lblMessage.Text = this.Message;
           // lblMessage.Text = this.Message;
            lblContent.Text = this.Content;
            progressShow.Properties.Minimum = MinProcess;
            progressShow.Properties.Maximum = MaxProcess;
@@ -145,7 +145,7 @@
        public void SetMessage(string newMessage)
        {
            this.Message = newMessage;
            lblMessage.Text = this.Message;
           // lblMessage.Text = this.Message;
            progressShow.PerformStep();
            this.Refresh();
        }