现在的位置: 首页 > 综合 > 正文

分享一下我的.Net Winform公共库(含程序入口,数据库设置,窗体工厂)加入Demo

2012年03月16日 ⁄ 综合 ⁄ 共 13613字 ⁄ 字号 评论关闭

做Winform开发有三年了

自己也封装了不少控件

下面把我现在每一个程序都要用的自己的封闭的公共运行库分享出来与大家交流

功能简单,确是很实用

这个库主要由三个部分组成

1.配置文件管理,主要思想是二进制的序列化,由于当时没用想到用XML,各位达人见笑。

2.窗体工厂,就是一个反射工厂,简单的封装了几个函数,由于当时对反射不了解,有几个参数弄的很可笑,大家也笑纳吧,嘿嘿

3.应用程序入口,主要实现了运行时保证程序只运行一个实例。并合并了数据连接等。。。

 

中间有的地方可能写的不大好,因为这个程序也用 了近两年了,我现在所有的winform程序都是以这个为基础。

有的接口不合理(比如FormFactory那几个函数)只是为了不对现有的程序做大改动

希望能与各们Winform达人交流,沟通

好了。代码奉上。

 

1.配置文件管理

 

代码


namespace SFTech.Forms
{

    [Serializable]
    public  class Settings  
    {
        
        
        
private static  Settings _instatance;
        
private static object flag = new object();

        #region 私有成员

      

        private static readonly string FileName = "FormApp.BIN";
        
private System.Collections.Hashtable _keyTable;
        
#endregion

        static Settings()
        {
            
if (_instatance == null)
            {
                
lock (flag)
                {

                    IFormatter formatter = new BinaryFormatter();

                    if (!File.Exists(FileName))
                    {
                        
new Settings().Save();
                    }
                    
using (FileStream _file = new FileStream(FileName, FileMode.Open))
                    {

                        try
                        {
                            _instatance 
= (Settings)formatter.Deserialize(_file);
                        }
                        
catch (InvalidCastException ex)
                        {
                            _file.Close();
                            File.Delete(FileName);
                            _instatance 
= new Settings();
                            
                        }
                        _file.Close();
                    }
                }
            }
        }

 
        private Settings()
        {
    
            _keyTable 
= new System.Collections.Hashtable();
        }
        
public static Settings Instatance
        {
            
get
            {

                return _instatance;
            }

        }

        public void Save()
        {
            IFormatter _serializer 
= new BinaryFormatter();
            
using (FileStream _file = new FileStream(FileName, FileMode.OpenOrCreate))
            {
                
                _serializer.Serialize(_file, 
this);
                
            }
            
        }

        public String this[String Key]
        {
            
get
            {
                
if (_keyTable == null)
                    _keyTable 
= new System.Collections.Hashtable();
                
if (_keyTable.ContainsKey(Key) == false)
                    _keyTable.Add(Key, 
"");
                
return _keyTable[Key] as string;
            }
            
set
            {
                _keyTable[Key] 
= value;
            }
        }

                    
                    
        
    }
}

 

 

2.窗体工厂

 

代码

namespace SFTech.Forms
{
    
public class FormFactory
    {
        
private Form _parent;
        
private String _nameSpace;

        /// <summary>
        
///  构造函数
        
/// </summary>
        
/// <param name="parent">MDI父窗体</param>
        public FormFactory(Form parent)
        {
            
this._parent = parent;
            _nameSpace 
= parent.GetType().Namespace;
           
        }

        public DialogResult  ShowDialog(String FormName)
        {
            Form form 
= System.Reflection.Assembly.Load(_nameSpace).CreateInstance(_nameSpace + "." + FormName) as Form;
            form.StartPosition 
= FormStartPosition.CenterParent;
            
if (form != null)
                
return form.ShowDialog(_parent);
            
return DialogResult.Cancel;
        }

        public DialogResult ShowDialog(String AppName,String NameSpace,String FormName)
        {
            Form form 
= System.Reflection.Assembly.Load(AppName).CreateInstance(NameSpace + "." + FormName) as Form;
            form.StartPosition 
= FormStartPosition.CenterParent;
            
if (form != null)
                
return form.ShowDialog(_parent);
            
return DialogResult.Cancel;
        }

        public Form  ShowMdiChiden(string FormName)
        {

            return ShowMdiChiden(_nameSpace, FormName);
        }

        public Form ShowMdiChiden(string NameSpace,string FormName)
        {
            Form child 
= System.Reflection.Assembly.Load(NameSpace ).CreateInstance(NameSpace + "." + FormName) as Form;
            child.MdiParent 
= this._parent;
            child.Show();
            child.WindowState 
= FormWindowState.Normal;
            child.Activate();
            
return child;
        }

        public Form GetSingleForm(String FormName)
        {
            
return GetSingleForm(_nameSpace,_nameSpace, FormName);

        }
        public Form GetSingleForm(string AppSetName,string NameSpace, string FormName)
        {
            Type formTpye 
= System.Reflection.Assembly.Load(AppSetName ).GetType(NameSpace + "." + FormName);
            
foreach (Form child in this._parent.MdiChildren)
            {
                
if (child.GetType() == formTpye)
                {
                    child.WindowState 
= FormWindowState.Normal;
                    child.Activate();
                    child.Show();
                    
return child;
                }
            }

            Form _child = System.Reflection.Assembly.Load(AppSetName).CreateInstance(NameSpace + "." + FormName) as Form;
            _child.MdiParent 
= this._parent;
            _child.Show();
            _child.WindowState 
= FormWindowState.Normal;
            _child.Activate();
            
return _child;

        }

    }
}

 

 

3.一个简单的数据库设置窗体

 

代码

namespace SFTech.Forms
{
    
public partial class DBSet : System.Windows.Forms.Form 
    {

        private SqlConnectionStringBuilder connectionString;
        
private string _Key;
        
public DBSet()
        {
            InitializeComponent();
        }

        public DBSet(String Connect)
        {
            InitializeComponent();
            
try
            {
                _Key 
= Connect;
                connectionString 
= new SqlConnectionStringBuilder(SFTech.Forms .Settings.Instatance[Connect]);
                connectionString.InitialCatalog 
= Connect;
            }
            
catch
            {
                connectionString 
= new SqlConnectionStringBuilder();
            }
        }

        private void DBSet_Load(object sender, EventArgs e)
        {
            
//this.Text = AppConfigration.ServiceAdd;
            serverTextBox.Text = connectionString.DataSource;
            userTextBox.Text 
= connectionString.UserID;
            passTextBox.Text 
= connectionString.Password;
            checkBox1.Checked 
= connectionString.IntegratedSecurity;
        }

        
        private void button2_Click(object sender, EventArgs e)
        {
            connectionString.DataSource 
= serverTextBox.Text;
            connectionString.InitialCatalog 
= _Key;
            connectionString.IntegratedSecurity 
= checkBox1.Checked;
            connectionString.ApplicationName 
= SFTech.Forms.App.AppName;
            
if (!checkBox1.Checked)
            {
                connectionString.UserID 
= userTextBox.Text;
                connectionString.Password 
= passTextBox.Text;
            }
            SFTech.Forms .Settings.Instatance[_Key] 
= connectionString.ToString();
            
try
            {
                
using (var conn = new System.Data.SqlClient.SqlConnection(connectionString.ToString()))
                {
                    conn.Open();
                    conn.Close();
                }
            }
            
catch (Exception ex)
            {
                MessageBox.Show(
this"无法连接到指定的数据库,请检查设置是否正确""无法连接", MessageBoxButtons.OK, MessageBoxIcon.Error);
                
return;
            }
            SFTech.Forms .Settings.Instatance.Save();
            
this.DialogResult = DialogResult.OK;
        }
        
public String GetConnectString()
        {
            
this.ShowDialog();
            
return this.connectionString.ToString();
        }

        private void checkBox1_CheckedChanged(object sender, EventArgs e)
        {

            this.userTextBox.Enabled = !this.checkBox1.Checked;
            
this.passTextBox.Enabled  = !this.checkBox1.Checked;
            
if (this.checkBox1.Checked == true)
            {
                
this.passTextBox.Text = null;
                
this.userTextBox.Text = null;
            }
           
        }

        private void userTextBox_TextChanged(object sender, EventArgs e)
        {

        }

        private void DBSet_FormClosing(object sender, FormClosingEventArgs e)
        {
            
        }
    }
}

namespace SFTech.Forms
{
    
partial class DBSet
    {
        
/// <summary>
        
/// 必需的设计器变量。
        
/// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        
/// 清理所有正在使用的资源。
        
/// </summary>
        
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
        protected override void Dispose(bool disposing)
        {
            
if (disposing && (components != null))
            {
                components.Dispose();
            }
            
base.Dispose(disposing);
        }

        #region Windows 窗体设计器生成的代码

        /// <summary>
        
/// 设计器支持所需的方法 - 不要
        
/// 使用代码编辑器修改此方法的内容。
        
/// </summary>
        private void InitializeComponent()
        {
            
this.groupBox1 = new System.Windows.Forms.GroupBox();
            
this.checkBox1 = new System.Windows.Forms.CheckBox();
            
this.userTextBox = new System.Windows.Forms.TextBox();
            
this.serverTextBox = new System.Windows.Forms.TextBox();
            
this.passTextBox = new System.Windows.Forms.TextBox();
            
this.label4 = new System.Windows.Forms.Label();
            
this.label3 = new System.Windows.Forms.Label();
            
this.label1 = new System.Windows.Forms.Label();
            
this.button1 = new System.Windows.Forms.Button();
            
this.button2 = new System.Windows.Forms.Button();
            
this.groupBox1.SuspendLayout();
            
this.SuspendLayout();
            
// 
            
// groupBox1
            
// 
            this.groupBox1.Controls.Add(this.checkBox1);
            
this.groupBox1.Controls.Add(this.userTextBox);
            
this.groupBox1.Controls.Add(this.serverTextBox);
            
this.groupBox1.Controls.Add(this.passTextBox);
            
this.groupBox1.Controls.Add(this.label4);
            
this.groupBox1.Controls.Add(this.label3);
            
this.groupBox1.Controls.Add(this.label1);
            
this.groupBox1.Location = new System.Drawing.Point(1313);
            
this.groupBox1.Name = "groupBox1";
            
this.groupBox1.Size = new System.Drawing.Size(278133);
            
this.groupBox1.TabIndex = 0;
            
this.groupBox1.TabStop = false;
            
this.groupBox1.Text = "数据库参数";
            
// 
            
// checkBox1
            
// 
            this.checkBox1.AutoSize = true;
            
this.checkBox1.Location = new System.Drawing.Point(8350);
            
this.checkBox1.Name = "checkBox1";
            
this.checkBox1.Size = new System.Drawing.Size(13816);
            
this.checkBox1.TabIndex = 8;
            
this.checkBox1.Text = "使用windows帐户登录";
            
this.checkBox1.UseVisualStyleBackColor = true;
            
this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
            
// 
            
// userTextBox
            
// 
            this.userTextBox.Location = new System.Drawing.Point(8371);
            
this.userTextBox.Name = "userTextBox";
            
this.userTextBox.Size = new System.Drawing.Size(17921);
            
this.userTextBox.TabIndex = 7;
            
this.userTextBox.TextChanged += new System.EventHandler(this.userTextBox_TextChanged);
            
// 
            
// serverTextBox
            
// 
            this.serverTextBox.Location = new System.Drawing.Point(8326);
            
this.serverTextBox.Name = "serverTextBox";
            
this.serverTextBox.Size = new System.Drawing.Size(17921);
            
this.serverTextBox.TabIndex = 5;
            
// 
            
// passTextBox
            
// 
            this.passTextBox.Location = new System.Drawing.Point(8395);
            
this.passTextBox.Name = "passTextBox";
            
this.passTextBox.PasswordChar = '*';
            
this.passTextBox.Size = new System.Drawing.Size(17921);
            
this.passTextBox.TabIndex = 4;
            
// 
            
// label4
            
// 
            this.label4.AutoSize = true;
            
this.label4.Location = new System.Drawing.Point(6102);
            
this.label4.Name = "label4";
            
this.label4.Size = new System.Drawing.Size(3512);
            
this.label4.TabIndex = 3;
            
this.label4.Text = "密码:";
            
// 
            
// label3
            
// 
            this.label3.AutoSize = true;
            
this.label3.Location = new System.Drawing.Point(678);
            
this.label3.Name = "label3";
            
this.label3.Size = new System.Drawing.Size(7112);
            
this.label3.TabIndex = 2;
            
this.label3.Text = "登录用户名:";
            
// 
            
// label1
            
// 
            this.label1.AutoSize = true;
            
this.label1.Location = new System.Drawing.Point(629);
            
this.label1.Name = "label1";
            
this.label1.Size = new System.Drawing.Size(7112);
            
this.label1.TabIndex = 0;
            
this.label1.Text = "服务器地址:";
            
// 
            
// button1
            
// 
            this.button1.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            
this.button1.Location = new System.Drawing.Point(216151);
            
this.button1.Name = "button1";
            
this.button1.Size = new System.Drawing.Size(7523);
            
this.button1.TabIndex = 1;
            
this.button1.Text = "取消";
            
this.button1.UseVisualStyleBackColor = true;
            
// 
            
// button2
            
// 
            this.button2.Location =

抱歉!评论已关闭.