bug
lu
2025-06-12 3d46409edbd033d22cd0e781c36add3ef7f7f3a1
DevApp/Gs.DevApp/UserControl/UCUpFile.cs
@@ -19,7 +19,7 @@
        }
        /// <summary>
        ///
        /// 父亲guid
        /// </summary>
        public string parentGuid
        {
@@ -27,7 +27,7 @@
            set;
        }
        /// <summary>
        ///
        /// 图片分组,比如login,logo等分组
        /// </summary>
        public string parentGroup
        {
@@ -53,7 +53,7 @@
            // 设置初始目录
            openFileDialog.InitialDirectory = "c:\\";
            // 设置文件过滤选项,如:"文本文件 (*.txt)|*.txt|所有文件 (*.*)|*.*"
            openFileDialog.Filter = "文本文件 (*.txt)|*.txt|所有文件 (*.*)|*.*";
            openFileDialog.Filter = "所有文件 (*.*)|*.*";
            // 设置标题
            openFileDialog.Title = "选择文件";
            // 显示对话框
@@ -113,9 +113,7 @@
                catch (Exception ex)
                {
                    Gs.DevApp.ToolBox.MsgHelper.ShowError(ex.Message);
                }
        }
        #endregion