亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? knowledgemanage.cs

?? c#編寫的汽車銷售公司erp進(jìn)銷存系統(tǒng)
?? CS
?? 第 1 頁 / 共 3 頁
字號:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using CallCenter.DALFactory;
using CallCenter.IDAL;
using CallCenter.Modules;
using CallCenter.BusinessLayer;
using DevExpress.Utils;
using DevExpress.XtraTreeList;
using DevExpress.XtraTreeList.Columns;
using DevExpress.XtraTreeList.Nodes;

namespace CallCenter.BusinessInterfaces.MainForms
{
	/// <summary>
	/// KnowledgeManage 的摘要說明。
	/// </summary>
	public class KnowledgeManage : System.Windows.Forms.UserControl
	{
		private DevExpress.XtraTreeList.Columns.TreeListColumn colTNAME;
		private DevExpress.XtraTreeList.Columns.TreeListColumn colOAMARK;
		private DevExpress.XtraTreeList.Columns.TreeListColumn colID;
		private DevExpress.XtraTreeList.Columns.TreeListColumn colPARENTID;
		private System.Data.DataSet ds;	
		private KnowledgeTypeBLL bll = new KnowledgeTypeBLL();
		private System.Windows.Forms.Panel panel1;
		private DevExpress.XtraTreeList.TreeList treeList1;
		private DevExpress.XtraEditors.PanelControl panel2;
		private int i=0;
		private string strnumber="";
		private KnowledgeInfo knowledgeinfo=null;
		private CallCenter.BusinessInterfaces.MainForms.HRichTextBox hRichTextBox1;
		private System.Windows.Forms.TextBox txtcamount;
		private System.Windows.Forms.TextBox txtiamount;
		private System.Windows.Forms.TextBox txtoamount;
		private System.Windows.Forms.TextBox txtkaname;
		private System.Windows.Forms.TextBox txtkaid;
		private System.Windows.Forms.TextBox txtkwdate;
		private System.Windows.Forms.TextBox txtkwname;
		private System.Windows.Forms.TextBox txtkwid;
		private System.Windows.Forms.Label label12;
		private System.Windows.Forms.Label label11;
		private System.Windows.Forms.Label label10;
		private System.Windows.Forms.Label label9;
		private System.Windows.Forms.Label label8;
		private System.Windows.Forms.Label label7;
		private System.Windows.Forms.Label label6;
		private System.Windows.Forms.Label label5;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.Label label1;
		private DevExpress.XtraEditors.PanelControl panelControl1;
		private DevExpress.XtraEditors.TextEdit txtktitle;
		private DevExpress.XtraEditors.TextEdit txtktype;
		private DevExpress.XtraEditors.TextEdit txtkkeywords;
		private DevExpress.XtraEditors.ComboBoxEdit cboamark;
		private DevExpress.XtraEditors.SimpleButton btAdd;
		private DevExpress.XtraEditors.SimpleButton btReset;


		/// <summary>
		/// 必需的設(shè)計(jì)器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;

		public KnowledgeManage()
		{
			//
			// Windows 窗體設(shè)計(jì)器支持所必需的
			//
			InitializeComponent();
			ds = bll.getKnowledgeType("KNOWLEDGETYPE");
			ClearData();
			//
			// TODO: 在 InitializeComponent 調(diào)用后添加任何構(gòu)造函數(shù)代碼
			//
		}
		public KnowledgeManage(KnowledgeInfo kinfo)
		{
			InitializeComponent();
			try
			{
				ds = bll.getKnowledgeType("KNOWLEDGETYPE");
				knowledgeinfo=new KnowledgeInfo();
				knowledgeinfo=kinfo;
				this.txtktitle.Text=kinfo.ktitle;
				string str="";
				strnumber=kinfo.ktype.Substring(1,kinfo.ktype.Length - 1);
				string s=kinfo.ktype.Substring(1,kinfo.ktype.Length - 2);
				//			MessageBox.Show(s);
				DataRow[] drp=ds.Tables["KNOWLEDGETYPE"].Select("id in ("+s+")");
				foreach(DataRow dr in drp)
				{
					str+=dr[ds.Tables["KNOWLEDGETYPE"].Columns["tname"]].ToString()+",";
				}
				//////kinfo.ktype=","+strnumber;
				this.txtktype.Text=","+str;
				this.txtkkeywords.Text=kinfo.kkeywords;
				this.txtkwid.Text=kinfo.kwid;
				this.txtkwname.Text=kinfo.kwname;
				this.txtkwdate.Text=kinfo.kwdate;//DateTime.Today.ToString();
				if(kinfo.oamark==0)
				{
					this.cboamark.Text="不可訪問";
				}
				else
				{
					this.cboamark.Text="可訪問";
				}
				this.txtkaid.Text=kinfo.kaid;
				this.txtkaname.Text=kinfo.kaname;
				this.txtoamount.Text=kinfo.oamount.ToString();
				this.txtiamount.Text=kinfo.iamount.ToString();
				this.txtcamount.Text=kinfo.camount.ToString();
//				this.txtkcontent.Rtf=kinfo.kcontent;
				this.hRichTextBox1.RtfText=kinfo.kcontent;
			}
			catch(Exception ex)
			{
				MessageBox.Show(ex.Message);
			}

		}

		/// <summary>
		/// 清理所有正在使用的資源。
		/// </summary>
		protected override void Dispose( bool disposing )
		{
//			i=0;
			if( disposing )
			{
				if(components != null)
				{
					
					components.Dispose();
					
				}
			}
			base.Dispose( disposing );
		}

		#region Windows 窗體設(shè)計(jì)器生成的代碼
		/// <summary>
		/// 設(shè)計(jì)器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內(nèi)容。
		/// </summary>
		private void InitializeComponent()
		{
			this.panel1 = new System.Windows.Forms.Panel();
			this.treeList1 = new DevExpress.XtraTreeList.TreeList();
			this.panel2 = new DevExpress.XtraEditors.PanelControl();
			this.btReset = new DevExpress.XtraEditors.SimpleButton();
			this.btAdd = new DevExpress.XtraEditors.SimpleButton();
			this.cboamark = new DevExpress.XtraEditors.ComboBoxEdit();
			this.txtkkeywords = new DevExpress.XtraEditors.TextEdit();
			this.txtktype = new DevExpress.XtraEditors.TextEdit();
			this.txtktitle = new DevExpress.XtraEditors.TextEdit();
			this.label7 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.label1 = new System.Windows.Forms.Label();
			this.txtcamount = new System.Windows.Forms.TextBox();
			this.txtiamount = new System.Windows.Forms.TextBox();
			this.txtoamount = new System.Windows.Forms.TextBox();
			this.txtkaid = new System.Windows.Forms.TextBox();
			this.txtkwdate = new System.Windows.Forms.TextBox();
			this.txtkwname = new System.Windows.Forms.TextBox();
			this.txtkwid = new System.Windows.Forms.TextBox();
			this.label12 = new System.Windows.Forms.Label();
			this.label11 = new System.Windows.Forms.Label();
			this.label10 = new System.Windows.Forms.Label();
			this.label9 = new System.Windows.Forms.Label();
			this.label8 = new System.Windows.Forms.Label();
			this.label6 = new System.Windows.Forms.Label();
			this.label5 = new System.Windows.Forms.Label();
			this.txtkaname = new System.Windows.Forms.TextBox();
			this.label4 = new System.Windows.Forms.Label();
			this.hRichTextBox1 = new CallCenter.BusinessInterfaces.MainForms.HRichTextBox();
			this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
			this.panel1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panel2)).BeginInit();
			this.panel2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.cboamark.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.txtkkeywords.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.txtktype.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.txtktitle.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
			this.panelControl1.SuspendLayout();
			this.SuspendLayout();
			// 
			// panel1
			// 
			this.panel1.Controls.Add(this.treeList1);
			this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
			this.panel1.Location = new System.Drawing.Point(0, 0);
			this.panel1.Name = "panel1";
			this.panel1.Size = new System.Drawing.Size(184, 549);
			this.panel1.TabIndex = 0;
			// 
			// treeList1
			// 
			this.treeList1.Appearance.Empty.BackColor = System.Drawing.Color.White;
			this.treeList1.Appearance.Empty.Options.UseBackColor = true;
			this.treeList1.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(128)), ((System.Byte)(128)), ((System.Byte)(255)));
			this.treeList1.Appearance.GroupButton.Options.UseBackColor = true;
			this.treeList1.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(128)), ((System.Byte)(128)), ((System.Byte)(255)));
			this.treeList1.Appearance.GroupFooter.Options.UseBackColor = true;
			this.treeList1.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(219)), ((System.Byte)(233)), ((System.Byte)(244)));
			this.treeList1.Appearance.HeaderPanel.Options.UseBackColor = true;
			this.treeList1.Appearance.Row.BackColor = System.Drawing.Color.White;
			this.treeList1.Appearance.Row.Options.UseBackColor = true;
			this.treeList1.Appearance.TreeLine.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(90)), ((System.Byte)(180)), ((System.Byte)(232)));
			this.treeList1.Appearance.TreeLine.Options.UseBackColor = true;
			this.treeList1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.treeList1.Location = new System.Drawing.Point(0, 0);
			this.treeList1.Name = "treeList1";
			this.treeList1.OptionsMenu.EnableColumnMenu = false;
			this.treeList1.Size = new System.Drawing.Size(184, 549);
			this.treeList1.TabIndex = 0;
			// 
			// panel2
			// 
			this.panel2.Appearance.BackColor = System.Drawing.Color.Transparent;
			this.panel2.Appearance.Options.UseBackColor = true;
			this.panel2.Controls.Add(this.btReset);
			this.panel2.Controls.Add(this.btAdd);
			this.panel2.Controls.Add(this.cboamark);
			this.panel2.Controls.Add(this.txtkkeywords);
			this.panel2.Controls.Add(this.txtktype);
			this.panel2.Controls.Add(this.txtktitle);
			this.panel2.Controls.Add(this.label7);
			this.panel2.Controls.Add(this.label3);
			this.panel2.Controls.Add(this.label2);
			this.panel2.Controls.Add(this.label1);
			this.panel2.Controls.Add(this.txtcamount);
			this.panel2.Controls.Add(this.txtiamount);
			this.panel2.Controls.Add(this.txtoamount);
			this.panel2.Controls.Add(this.txtkaid);
			this.panel2.Controls.Add(this.txtkwdate);
			this.panel2.Controls.Add(this.txtkwname);
			this.panel2.Controls.Add(this.txtkwid);
			this.panel2.Controls.Add(this.label12);
			this.panel2.Controls.Add(this.label11);
			this.panel2.Controls.Add(this.label10);
			this.panel2.Controls.Add(this.label9);
			this.panel2.Controls.Add(this.label8);
			this.panel2.Controls.Add(this.label6);
			this.panel2.Controls.Add(this.label5);
			this.panel2.Controls.Add(this.txtkaname);
			this.panel2.Controls.Add(this.label4);
			this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
			this.panel2.Location = new System.Drawing.Point(184, 0);
			this.panel2.Name = "panel2";
			this.panel2.Size = new System.Drawing.Size(668, 128);
			this.panel2.TabIndex = 2;
			// 
			// btReset
			// 
			this.btReset.Location = new System.Drawing.Point(560, 64);
			this.btReset.Name = "btReset";
			this.btReset.TabIndex = 58;
			this.btReset.Text = "清空";
			this.btReset.Click += new System.EventHandler(this.btReset_Click);
			// 
			// btAdd
			// 
			this.btAdd.Location = new System.Drawing.Point(560, 16);
			this.btAdd.Name = "btAdd";
			this.btAdd.TabIndex = 57;
			this.btAdd.Tag = "添加";
			this.btAdd.Text = "添加";
			this.btAdd.Click += new System.EventHandler(this.btAdd_Click);
			// 
			// cboamark
			// 
			this.cboamark.EditValue = "";
			this.cboamark.Location = new System.Drawing.Point(96, 96);
			this.cboamark.Name = "cboamark";
			// 
			// cboamark.Properties
			// 
			this.cboamark.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
			this.cboamark.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																											 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.cboamark.Properties.Items.AddRange(new object[] {
																	 "不可訪問",
																	 "可訪問"});
			this.cboamark.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.cboamark.Size = new System.Drawing.Size(160, 21);
			this.cboamark.TabIndex = 56;
			// 
			// txtkkeywords
			// 
			this.txtkkeywords.EditValue = "";
			this.txtkkeywords.Location = new System.Drawing.Point(75, 69);
			this.txtkkeywords.Name = "txtkkeywords";
			// 
			// txtkkeywords.Properties
			// 
			this.txtkkeywords.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
			this.txtkkeywords.Size = new System.Drawing.Size(453, 21);
			this.txtkkeywords.TabIndex = 55;
			// 
			// txtktype
			// 
			this.txtktype.EditValue = "";
			this.txtktype.Location = new System.Drawing.Point(75, 45);
			this.txtktype.Name = "txtktype";
			// 

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩精品欧美日韩精品一综合| 秋霞电影网一区二区| 日韩欧美中文字幕精品| 欧洲av在线精品| 色综合久久久久综合| 色婷婷综合久色| 色综合天天综合在线视频| 成人免费va视频| av电影在线观看完整版一区二区| proumb性欧美在线观看| 成人国产在线观看| 色综合av在线| 欧美日本一区二区三区| 日韩精品专区在线| 国产三级久久久| 综合色中文字幕| 午夜精彩视频在线观看不卡| 日本在线不卡一区| 国产成人在线免费| 91视频在线看| 欧美一区二区三区在线视频| 精品国产髙清在线看国产毛片| 久久久久久久免费视频了| 国产精品网站在线| 亚洲第一成年网| 国产一区免费电影| 色综合婷婷久久| 日韩精品一区二| 中文成人综合网| 亚洲一区中文在线| 国产精品伊人色| 在线观看视频欧美| 久久久久久久久蜜桃| 亚洲欧美日韩在线不卡| 美女mm1313爽爽久久久蜜臀| av亚洲精华国产精华| 欧美日韩亚洲高清一区二区| 26uuu亚洲综合色| 亚洲精品成人在线| 国产一区二区在线看| 91网站在线观看视频| 日韩欧美国产不卡| 亚洲自拍偷拍麻豆| 国产成人aaaa| 日韩免费性生活视频播放| 亚洲品质自拍视频| 国产成人免费视频精品含羞草妖精 | 国产偷国产偷精品高清尤物| 亚洲激情第一区| 国产a视频精品免费观看| 欧美视频日韩视频| 亚洲日本丝袜连裤袜办公室| 美女免费视频一区二区| 在线视频欧美区| 中文字幕日本不卡| 国产麻豆精品95视频| 91麻豆精品久久久久蜜臀 | 一区二区三区在线观看网站| 精品一区二区三区日韩| 欧美高清性hdvideosex| 亚洲激情图片qvod| 成人激情电影免费在线观看| 欧美成人精品二区三区99精品| 亚洲国产一区在线观看| 91小视频免费观看| 1区2区3区精品视频| 成人激情黄色小说| 国产日本欧美一区二区| 国产一区999| 精品久久一二三区| 九九在线精品视频| 日韩欧美国产麻豆| 精品一区二区三区的国产在线播放 | 国产老女人精品毛片久久| 精品国产污污免费网站入口 | 欧美性猛交xxxx乱大交退制版| 国产精品成人午夜| 91一区二区三区在线观看| 国产精品欧美久久久久无广告| 国产黄色91视频| 欧美高清在线精品一区| 99久久久久免费精品国产 | 亚洲高清视频中文字幕| 在线免费一区三区| 天天综合网天天综合色| 91精品婷婷国产综合久久性色| 日韩av不卡在线观看| 日韩三级电影网址| 国产剧情在线观看一区二区| 国产欧美一区二区在线观看| 成人黄色777网| 亚洲精品视频在线看| 欧美日韩在线免费视频| 麻豆国产精品一区二区三区| 久久久久国产精品厨房| 丁香天五香天堂综合| 亚洲欧美一区二区三区孕妇| 欧美综合一区二区三区| 美脚の诱脚舐め脚责91| 久久午夜电影网| 色婷婷国产精品| 美女被吸乳得到大胸91| 中文字幕不卡一区| 精品1区2区3区| 国产一区二区三区视频在线播放| 国产精品五月天| 91精品在线一区二区| 国产凹凸在线观看一区二区| 亚洲中国最大av网站| 精品欧美久久久| 91在线观看成人| 国内偷窥港台综合视频在线播放| 国产精品成人免费精品自在线观看| 欧美日韩国产综合一区二区三区| 狠狠色综合播放一区二区| 一区二区三区在线影院| 精品国产免费一区二区三区四区 | 精品一区二区三区影院在线午夜| 国产精品久久久久影院| 91精品国模一区二区三区| 国产成人免费视频精品含羞草妖精 | 欧美国产精品一区| 欧美网站大全在线观看| 国产成人精品影院| 成人av电影免费在线播放| 天堂蜜桃一区二区三区| 中文字幕中文字幕一区二区 | 成人免费毛片app| 毛片基地黄久久久久久天堂| 亚洲女爱视频在线| 亚洲国产精品v| 精品国内二区三区| 欧美人牲a欧美精品| 色综合久久综合中文综合网| 国产精品69毛片高清亚洲| 免费在线观看日韩欧美| 午夜精品福利一区二区蜜股av| 中文字幕一区二区三| 久久久久久久精| 精品日韩一区二区| 日韩三级视频中文字幕| 欧美日本国产一区| 欧美日韩亚洲综合在线| 一本到三区不卡视频| 91亚洲资源网| 色又黄又爽网站www久久| 99久久久国产精品免费蜜臀| 国产成人午夜电影网| 国产一区二区在线电影| 国产一区二区毛片| 国产麻豆91精品| 国产精品伊人色| 国产成人鲁色资源国产91色综 | 精品国产免费人成在线观看| 欧美精品三级日韩久久| 欧美猛男gaygay网站| 7777精品伊人久久久大香线蕉超级流畅| 色偷偷88欧美精品久久久| 色悠久久久久综合欧美99| 日本韩国欧美在线| 欧美日韩免费一区二区三区 | 国产激情视频一区二区三区欧美 | 91福利国产成人精品照片| 91丨国产丨九色丨pron| 欧洲另类一二三四区| 欧美日韩中文一区| 7777女厕盗摄久久久| 欧美tickling网站挠脚心| 国产亚洲综合在线| 国产精品久久久久久妇女6080| 亚洲欧美日韩久久| 日本不卡视频一二三区| 国产一区二区在线免费观看| 成人精品一区二区三区四区| 色综合久久久久综合| 在线播放中文一区| 国产欧美精品一区二区色综合朱莉| 国产精品视频看| 香蕉成人伊视频在线观看| 免费高清视频精品| 成人av集中营| 欧美福利视频一区| 久久久精品免费观看| 亚洲男人的天堂在线aⅴ视频| 婷婷一区二区三区| 成人毛片视频在线观看| 欧美四级电影网| 久久亚洲一区二区三区明星换脸| 国产精品久久久久久亚洲毛片 | 欧美xxxxxxxxx| 最新久久zyz资源站| 日本成人在线看| av资源网一区| 国产精品欧美一区喷水| 成人教育av在线| 在线成人高清不卡| 国产喂奶挤奶一区二区三区| 亚洲国产乱码最新视频 | 亚洲一区在线观看网站| 日韩三级av在线播放|