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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? knowledgemanage.cs

?? c#編寫的汽車銷售公司erp進銷存系統
?? 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>
		/// 必需的設計器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;

		public KnowledgeManage()
		{
			//
			// Windows 窗體設計器支持所必需的
			//
			InitializeComponent();
			ds = bll.getKnowledgeType("KNOWLEDGETYPE");
			ClearData();
			//
			// TODO: 在 InitializeComponent 調用后添加任何構造函數代碼
			//
		}
		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 窗體設計器生成的代碼
		/// <summary>
		/// 設計器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內容。
		/// </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";
			// 

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久9热精品视频| 国产成人午夜高潮毛片| 国产欧美一区在线| 欧美日韩一区二区电影| 大胆亚洲人体视频| 久久精品国产999大香线蕉| 玉米视频成人免费看| 国产亚洲精品7777| 日韩一卡二卡三卡| 91久久香蕉国产日韩欧美9色| 精品一区二区国语对白| 亚洲制服丝袜一区| 一色屋精品亚洲香蕉网站| 久久午夜羞羞影院免费观看| 欧美日韩一区二区电影| 色综合中文综合网| 欧美激情在线看| 欧美一级久久久| 欧美精选一区二区| 日本精品视频一区二区| 成人av在线观| 国产福利一区二区三区视频| 午夜影院久久久| 一区二区理论电影在线观看| 中文字幕va一区二区三区| 久久精品夜夜夜夜久久| 亚洲精品一区二区三区精华液 | 国产婷婷色一区二区三区 | 亚洲综合在线电影| 亚洲欧洲韩国日本视频| 国产精品三级久久久久三级| 久久久精品免费免费| 久久精品一区二区三区不卡| 2023国产一二三区日本精品2022| 宅男在线国产精品| 91麻豆精品国产91久久久久久| 欧美三级电影在线观看| 欧美嫩在线观看| 欧美日韩国产bt| 欧美精品粉嫩高潮一区二区| 欧美丰满少妇xxxbbb| 欧美一区二区三区免费视频| 777久久久精品| 欧美一级爆毛片| 精品捆绑美女sm三区| 久久久亚洲精华液精华液精华液| 久久九九99视频| 亚洲欧洲日韩女同| 亚洲精品国产第一综合99久久| 亚洲福利视频三区| 美女任你摸久久| 黑人巨大精品欧美一区| 成人教育av在线| 91香蕉视频mp4| 欧美日韩综合在线| 日韩一区二区三区在线| 久久精品一级爱片| 亚洲精品少妇30p| 天天操天天综合网| 国内精品伊人久久久久影院对白| 国产suv精品一区二区6| 91啪亚洲精品| 制服.丝袜.亚洲.中文.综合| 久久久精品一品道一区| 亚洲你懂的在线视频| 日韩高清国产一区在线| 国产一区二区主播在线| 99久久精品国产观看| 91精品啪在线观看国产60岁| 久久久不卡网国产精品一区| 亚洲你懂的在线视频| 免费欧美高清视频| 成人精品鲁一区一区二区| 欧美视频一区二区三区在线观看| 欧美一级一区二区| 中文字幕视频一区| 日韩电影免费在线观看网站| 国产成人午夜视频| 欧美日韩一区二区三区免费看| 久久午夜免费电影| 一区二区三区在线观看国产| 精品制服美女久久| 91浏览器打开| 久久久久久久久久久久久久久99 | 国产成人综合精品三级| 欧美视频在线观看一区二区| 久久伊人蜜桃av一区二区| 亚洲黄色在线视频| 国产一区二区精品久久99| 欧美三级欧美一级| 中文字幕一区二区三区在线不卡| 免费观看91视频大全| 91视频免费看| 国产三级一区二区三区| 日韩专区在线视频| 91麻豆swag| 国产日韩欧美a| 久久精品国产免费| 欧美人妇做爰xxxⅹ性高电影| 中文av一区特黄| 精品一区二区三区在线播放 | 亚洲成a人v欧美综合天堂下载 | 国产精品嫩草久久久久| 经典一区二区三区| 5858s免费视频成人| 亚洲欧美色图小说| 成人av在线网站| 国产亚洲精品bt天堂精选| 久久99精品国产91久久来源| 欧美日韩精品一区视频| 亚洲男人天堂av网| av在线播放一区二区三区| 久久看人人爽人人| 国模冰冰炮一区二区| 日韩一区二区三区电影 | 国产一区二区精品久久| 日韩一级视频免费观看在线| 五月天一区二区| 欧美日韩中文精品| 亚洲已满18点击进入久久| 91美女片黄在线| 亚洲色欲色欲www| 99视频精品免费视频| 久久久久久黄色| 国产精品综合久久| 欧美成人aa大片| 国产一区二区在线看| 精品少妇一区二区三区在线视频| 日韩电影在线观看一区| 欧美另类一区二区三区| 日韩精品欧美精品| 欧美一区二区女人| 欧美a级理论片| 日韩午夜在线观看| 狠狠色狠狠色综合系列| 26uuu亚洲综合色| 国产精品18久久久久久久久 | 免费一区二区视频| 日韩免费高清av| 韩国一区二区在线观看| 久久精品亚洲精品国产欧美| 国产精品一区二区三区99| 久久久噜噜噜久久人人看 | 日韩中文字幕亚洲一区二区va在线| 91豆麻精品91久久久久久| 亚洲综合视频在线观看| 欧美另类一区二区三区| 麻豆精品精品国产自在97香蕉| 欧美videos中文字幕| 国产99久久久国产精品潘金网站| 国产午夜精品福利| 色美美综合视频| 青青草97国产精品免费观看无弹窗版| 欧美成人猛片aaaaaaa| 成人中文字幕合集| 艳妇臀荡乳欲伦亚洲一区| 欧美猛男超大videosgay| 裸体歌舞表演一区二区| 国产偷国产偷亚洲高清人白洁| caoporm超碰国产精品| 亚洲精品一二三| 91精品国产美女浴室洗澡无遮挡| 久久精品国产99久久6| 国产精品女同一区二区三区| 欧美午夜精品一区二区三区| 日本人妖一区二区| 国产精品每日更新| 欧美日韩久久一区| 国产成人欧美日韩在线电影| 洋洋成人永久网站入口| 精品精品国产高清a毛片牛牛| av成人老司机| 日产精品久久久久久久性色| 中文在线免费一区三区高中清不卡| 色综合久久88色综合天天6| 蜜桃91丨九色丨蝌蚪91桃色| 中文字幕不卡在线观看| 欧美肥妇bbw| www.性欧美| 捆绑紧缚一区二区三区视频| |精品福利一区二区三区| 91精品国产免费| 91丨porny丨最新| 国产在线精品免费| 亚洲国产精品久久久男人的天堂| 国产亚洲婷婷免费| 欧美丰满美乳xxx高潮www| caoporn国产一区二区| 老司机午夜精品99久久| 一区二区三区中文在线| 久久青草欧美一区二区三区| 色天天综合久久久久综合片| 国产一区不卡在线| 日韩和欧美一区二区| 国产精品国产三级国产普通话99| 欧美一区二区三级| 欧美午夜影院一区| 91丝袜高跟美女视频| 国产成人夜色高潮福利影视| 美洲天堂一区二卡三卡四卡视频|