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

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

?? knowledgemanage.cs

?? 汽車銷售公司ERP進銷存系統(tǒng) 汽車銷售公司ERP進銷存系統(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è)計器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;

		public KnowledgeManage()
		{
			//
			// Windows 窗體設(shè)計器支持所必需的
			//
			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è)計器生成的代碼
		/// <summary>
		/// 設(shè)計器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內(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一区二区三区免费野_久草精品视频
国产在线乱码一区二区三区| 亚洲va欧美va国产va天堂影院| 九九九久久久精品| 欧美哺乳videos| 国产在线一区二区| 国产精品盗摄一区二区三区| 波多野结衣在线一区| 亚洲美女少妇撒尿| 欧美日韩一级视频| 精油按摩中文字幕久久| 欧美国产日韩在线观看| 色婷婷亚洲综合| 天堂午夜影视日韩欧美一区二区| 欧美一级一级性生活免费录像| 麻豆精品一区二区三区| 国产婷婷色一区二区三区| 成人v精品蜜桃久久一区| 亚洲国产综合色| 久久久三级国产网站| 99re在线视频这里只有精品| 日韩在线卡一卡二| 久久久精品国产免费观看同学| av在线一区二区| 日本麻豆一区二区三区视频| 国产精品天天看| 欧美午夜宅男影院| 老司机免费视频一区二区三区| 欧美激情一区三区| 欧美精品粉嫩高潮一区二区| 国产福利一区二区| 日韩—二三区免费观看av| 国产日韩精品一区二区三区在线| 欧美三级韩国三级日本三斤| 激情伊人五月天久久综合| 亚洲精品一二三四区| 精品国产百合女同互慰| 色伊人久久综合中文字幕| 蜜桃视频免费观看一区| 亚洲欧美偷拍三级| 久久精品在这里| 欧美高清视频一二三区| 99精品久久只有精品| 国内精品国产成人国产三级粉色 | 欧美日韩精品一区二区三区蜜桃 | 色哟哟国产精品免费观看| 蜜臀av一级做a爰片久久| 最近日韩中文字幕| 久久综合999| 91精品中文字幕一区二区三区| 成人av网在线| 精品一区二区三区在线观看| 亚洲综合一二三区| 综合中文字幕亚洲| 久久免费视频一区| 91精品免费在线观看| 一本一本大道香蕉久在线精品| 国内精品久久久久影院一蜜桃| 午夜激情一区二区| 夜夜亚洲天天久久| 1区2区3区国产精品| 久久中文字幕电影| 欧美一区二区三区视频在线| 日本精品一区二区三区四区的功能| 国产91在线观看| 国产suv精品一区二区三区| 国内精品伊人久久久久影院对白| 蜜桃视频一区二区| 久久av资源网| 久久99精品久久只有精品| 日本不卡一二三| 青娱乐精品在线视频| 午夜欧美视频在线观看| 亚洲综合精品久久| 一区二区三区不卡在线观看 | 精品人在线二区三区| 欧美高清一级片在线| 91精品国产欧美日韩| 欧美一区二区三区在线视频| 欧美乱熟臀69xxxxxx| 欧美一区二区三区爱爱| 欧美一区二区视频网站| 精品毛片乱码1区2区3区| 久久久综合九色合综国产精品| 亚洲精品一区二区三区精华液| 欧美成人三级在线| 久久品道一品道久久精品| 国产欧美日韩精品在线| 国产精品午夜在线观看| 中文字幕在线一区二区三区| 国产精品进线69影院| 亚洲欧美视频在线观看| 亚洲一区欧美一区| 天天av天天翘天天综合网色鬼国产| 天天影视网天天综合色在线播放| 蜜桃一区二区三区在线| 国产成人精品aa毛片| jizzjizzjizz欧美| 91久久精品一区二区三| 3d成人动漫网站| 久久亚洲捆绑美女| 亚洲天堂久久久久久久| 日日摸夜夜添夜夜添精品视频 | 蜜桃av一区二区在线观看| 国产美女娇喘av呻吟久久| 国产成+人+日韩+欧美+亚洲| 色综合久久综合网| 日韩一卡二卡三卡| 国产精品每日更新在线播放网址| 一区二区三区在线视频免费| 三级亚洲高清视频| 国产成人免费av在线| 日本高清成人免费播放| 欧美一区二区三区免费视频| 久久精品人人爽人人爽| 一区二区三区四区亚洲| 久久精品国产一区二区三| av在线综合网| 精品久久人人做人人爽| 樱桃国产成人精品视频| 国产一区 二区| 欧洲亚洲国产日韩| 久久青草国产手机看片福利盒子| 亚洲激情在线播放| 国产传媒久久文化传媒| 欧美乱妇23p| 亚洲丝袜美腿综合| 精品一区在线看| 欧美综合一区二区| 国产精品污污网站在线观看| 麻豆一区二区三| 91福利资源站| 久久久高清一区二区三区| 天天综合天天做天天综合| 成人黄色小视频在线观看| 欧美一区二区在线不卡| 夜夜嗨av一区二区三区中文字幕 | 欧美精品乱人伦久久久久久| 国产精品毛片久久久久久| 青青草国产成人av片免费 | 91极品美女在线| 欧美激情资源网| 国产成人综合网| 欧美日韩成人在线| 亚洲精品视频在线观看网站| 国产在线精品国自产拍免费| 欧美一区二区国产| 亚洲午夜精品在线| 97aⅴ精品视频一二三区| 国产精品美女久久久久久久久久久 | 国产一区二区三区在线观看免费| 色伊人久久综合中文字幕| 亚洲欧洲日韩综合一区二区| 国产一区欧美二区| 91精品国产综合久久精品性色| 一区二区三区精品在线观看| 成人av免费观看| 中文字幕av一区二区三区高| 国产美女在线观看一区| 精品嫩草影院久久| 国产一区二区毛片| 欧美成人性战久久| 麻豆精品久久精品色综合| 欧美一区二区网站| 男女男精品视频| 正在播放一区二区| 日欧美一区二区| 91精品国产入口在线| 日日欢夜夜爽一区| 日韩小视频在线观看专区| 日韩高清不卡在线| 欧美一区二区三区男人的天堂| 性感美女极品91精品| 中文字幕高清不卡| av日韩在线网站| 亚洲少妇30p| 欧美揉bbbbb揉bbbbb| 亚洲电影第三页| 欧美一区二区三区喷汁尤物| 免费高清成人在线| 欧美精品一区二区高清在线观看| 久久国产精品露脸对白| 欧美精品一区二区三区高清aⅴ | 欧美精品一区二区蜜臀亚洲| 国产一区啦啦啦在线观看| 久久精品人人爽人人爽| 99综合电影在线视频| 又紧又大又爽精品一区二区| 欧美日韩卡一卡二| 麻豆91在线观看| 国产夜色精品一区二区av| 不卡电影一区二区三区| 一区二区三区不卡视频| 欧美剧情片在线观看| 国产精品自拍av| 亚洲女子a中天字幕| 91精品欧美综合在线观看最新| 国产在线精品一区二区三区不卡 | 亚洲福利视频三区| 日韩区在线观看| 懂色av噜噜一区二区三区av|