• 大小: 2.39M
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2023-09-09
  • 语言: 其他
  • 标签: 其他  

资源简介

二维码.zip

资源截图

代码片段和文件信息

/****************************************
 * 创 建 者:聂霖
 * 创建时间:2016-07-12
 * 修 改 者:聂霖
 * 修改时间:2016-07-12
 * 业务名称:Settlement.UI.Common.MsgBox
 * 业务描述:弹出框通用类
****************************************/
using System;
using System.Collections.Generic; 
using System.Text;
using System.Windows.Forms;
using DevExpress.XtraEditors;
using DevExpress.XtraSplashScreen;

namespace Com.MEP.UI
{
    public class MsgBox
    {
        /// 
        /// 弹出提示信息
        /// 

        /// 提示信息
        /// DialogResult
        public static DialogResult Info(string text)
        {
            return XtraMessageBox.Show(text “信息“ MessageBoxButtons.OK MessageBoxIcon.Information);
        }
        /// 
        /// 弹出提示信息
        /// 

        /// 所有者窗口句柄
        /// 提示信息
        /// DialogResult
        public static DialogResult Info(IWin32Window owner string text)
        {
            return XtraMessageBox.Show(owner text “信息“ MessageBoxButtons.OK MessageBoxIcon.Information);
        }

        /// 
        /// 弹出错误提示信息
        /// 

        /// 提示信息
        /// DialogResult
        public static DialogResult Error(string text)
        {
            return XtraMessageBox.Show(text “错误“ MessageBoxButtons.OK MessageBoxIcon.Error);
        }
        /// 
        /// 弹出错误提示信息
        /// 

        /// 所有者窗口句柄
        /// 提示信息
        /// DialogResult
        public static DialogResult Error(IWin32Window owner string text)
        {
            return XtraMessageBox.Show(owner text “错误“ MessageBoxButtons.OK MessageBoxIcon.Error);
        }

        /// 
        /// 弹出成功提示信息
        /// 

        /// 提示信息
        /// DialogResult
        public static DialogResult Sucess(string text)
        {
            return XtraMessageBox.Show(text “成功“ MessageBoxButtons.OK MessageBoxIcon.Information);
        }
        /// 
        /// 弹出成功提示信息
        /// 

        /// 所有者窗口句柄
        /// 提示信息
        /// DialogResult
        public static DialogResult Sucess(IWin32Window owner string text)
        {
            return XtraMessageBox.Show(owner text “成功“ MessageBoxButtons.OK MessageBoxIcon.Information);
        }

        /// 
        /// 弹出警告提示信息
        /// 

        /// 提示信息
        /// DialogResult
        public static DialogResult Warning(string text)
        {
            return XtraMessageBox.Show(text “警告“ MessageBoxButtons.OK MessageBoxIcon.Wa

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-11-24 09:59  二维码\
     目录           0  2017-11-24 10:00  二维码\dll\
     文件     1545728  2017-09-11 16:25  二维码\dll\SkinGridGreen.dll
     文件     6209536  2013-09-12 14:46  二维码\dll\ThoughtWorks.QRCode.dll
     目录           0  2017-11-24 10:34  二维码\二维码\
     文件        8290  2017-11-24 10:05  二维码\二维码\MsgBox.cs
     文件        1464  2017-11-24 09:30  二维码\二维码\Program.cs
     目录           0  2017-11-24 09:42  二维码\二维码\Properties\
     文件        1448  2017-11-24 09:22  二维码\二维码\Properties\AssemblyInfo.cs
     文件        3238  2017-11-24 10:34  二维码\二维码\Properties\Resources.Designer.cs
     文件        6217  2017-11-24 10:34  二维码\二维码\Properties\Resources.resx
     文件        1096  2017-11-24 09:22  二维码\二维码\Properties\Settings.Designer.cs
     文件         249  2017-11-24 09:22  二维码\二维码\Properties\Settings.settings
     文件         390  2017-11-24 11:06  二维码\二维码\Properties\licenses.licx
     目录           0  2017-11-24 10:34  二维码\二维码\Resources\
     文件       12637  2017-11-24 10:34  二维码\二维码\Resources\我的二维码.jpg
     文件       30177  2017-11-24 10:59  二维码\二维码\XtraForm1.Designer.cs
     文件        6829  2017-11-24 11:05  二维码\二维码\XtraForm1.cs
     文件        5817  2017-11-24 10:59  二维码\二维码\XtraForm1.resx
     目录           0  2017-11-24 09:30  二维码\二维码\bin\
     目录           0  2017-11-24 10:03  二维码\二维码\bin\Debug\
     文件     1545728  2017-09-11 16:25  二维码\二维码\bin\Debug\SkinGridGreen.dll
     文件     6209536  2013-09-12 14:46  二维码\二维码\bin\Debug\ThoughtWorks.QRCode.dll
     文件       37376  2017-11-24 11:06  二维码\二维码\bin\Debug\二维码.exe
     文件       38400  2017-11-24 11:06  二维码\二维码\bin\Debug\二维码.pdb
     文件       11600  2017-11-24 11:10  二维码\二维码\bin\Debug\二维码.vshost.exe
     目录           0  2017-11-24 11:13  二维码\二维码\bin\Release\
     目录           0  2017-11-24 09:22  二维码\二维码\obj\
     目录           0  2017-11-24 09:22  二维码\二维码\obj\x86\
     目录           0  2017-11-24 11:06  二维码\二维码\obj\x86\Debug\
     文件        2867  2017-11-24 09:22  二维码\二维码\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
............此处省略14个文件信息

评论

共有 条评论