wxr
2024-10-28 ae95e3f4b9cbc1e7be2773068e28e2ac911c48c4
默认服务器
3个文件已修改
8 ■■■■■ 已修改文件
HDL_ON/UI/UI0-Stan/Controls/CompoundControls/SeekBarImageControl.cs 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
HDL_ON/UI/UI1-Login/RegisterPageBLL.cs 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
HDL_ON/UI/UI2/FuntionControlView/Light/ColorTureLampPage.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
HDL_ON/UI/UI0-Stan/Controls/CompoundControls/SeekBarImageControl.cs
@@ -247,8 +247,8 @@
            int XX = this.X + this.m_SeekBarPadding;
            //当前滑条所在的大致百分比
            int tempValue = this.Progress - this.m_MinValue;
            if (tempValue < 0) { tempValue = 0; }
            decimal persent = (decimal)tempValue / (this.m_MaxValue - this.m_MinValue);
            if (tempValue < 0) { tempValue = 0; }
            decimal persent = (decimal)tempValue / ((this.m_MaxValue - this.m_MinValue) == 0 ? 1 : (this.m_MaxValue - this.m_MinValue));
            //当前滑条所在的大致位置
            XX += (int)((this.Width - this.m_SeekBarPadding * 2) * persent);
            //因为要居中,所以减掉自定义控件的宽度的一般
HDL_ON/UI/UI1-Login/RegisterPageBLL.cs
@@ -821,6 +821,7 @@
                                        if (server != null)
                                        {
                                            OnAppConfig.Instance.GlobalRegion = server;
                                            OnAppConfig.Instance.RequestHttpsHost = server.regionUrl;
                                            SetServerText();
                                        }
                                    }
@@ -830,6 +831,7 @@
                                        if (server != null)
                                        {
                                            OnAppConfig.Instance.GlobalRegion = server;
                                            OnAppConfig.Instance.RequestHttpsHost = server.regionUrl;
                                            SetServerText();
                                        }
                                    }
HDL_ON/UI/UI2/FuntionControlView/Light/ColorTureLampPage.cs
@@ -787,7 +787,7 @@
            //当前滑条所在的大致百分比
            int tempValue = this.Progress - this.m_MinValue;
            if (tempValue < 0) { tempValue = 0; }
            decimal persent = (decimal)tempValue / (this.m_MaxValue - this.m_MinValue);
            decimal persent = (decimal)tempValue / ((this.m_MaxValue - this.m_MinValue) == 0 ? 1 : (this.m_MaxValue - this.m_MinValue));
            //当前滑条所在的大致位置
            XX += (int)((this.Width - this.m_SeekBarPadding * 2) * persent);
            //因为要居中,所以减掉自定义控件的宽度的一般