public ItemControl(ItemPrototypeModel model, List <Affix> affixes, ItemBase itemBase)
 {
     Model     = model;
     Condition = new ConditionControl(model.Condition, itemBase, affixes);
     OnPropertyChanged(nameof(Condition));
     DataContext = this;
     InitializeComponent();
 }
 public void Initialize(ICondition condition)
 {
     ConditionControl conditioncontrol = new ConditionControl(condition);
     this.conditionpnl.Height = conditioncontrol.Height;
     this.Parent.Height = this.conditionpnl.Bottom;
     this.Height = conditionpnl.Bottom + 2;
     conditioncontrol.Parent = this.conditionpnl;
     conditioncontrol.Dock = DockStyle.Fill;
 }
示例#3
0
        private void ShowPanelForCondition(ICondition condition)
        {
            this.descriptiontxt.Text = condition["Description"];
            ConditionControl conditioncontrol = new ConditionControl(condition);
            this.controlpnl1.Height = conditioncontrol.Height;
            conditioncontrol.Dock = DockStyle.Fill;
            conditioncontrol.Parent = this.controlpnl1;

            this.controlpnl2.Height = 0;
        }
示例#4
0
 public void OpenCondition(ConditionViewModel condition)
 {
     if (condition != null && condition.TargetObject != null)
     {
         condition.AnalyseStartTime = AnalyseStartTime;
         condition.AnalyseEndTime   = TestEndTime;
         condition.AnalyseGrade     = AnalyseGrade;
         //condition.TargetObject.GetMarketData = (instrument,start,end,grade) => { return CurrentDataSource.GetDataList(instrument,start,end,grade); };
         condition.TargetObject.AnalyseDataSource = CurrentDataSource;
         var c = new ConditionControl()
         {
             DataContext = condition
         };
         if (OpenView != null)
         {
             OpenView("Name", c, true);
         }
     }
 }
示例#5
0
        void gxPolicyTree_AfterNodeSelect(object sender, DevComponents.Tree.TreeGXNodeEventArgs e)
        {
            CustomGXNode node = e.Node as CustomGXNode;
            if (null == node.Object)
                return;

            if (node.Object is ICondition)
            {
                this.detailspnl.Controls.Clear();
                ConditionControl conditioncontrol = new ConditionControl(node.Object as ICondition);
                conditioncontrol.Width = this.detailspnl.Width;
                conditioncontrol.Parent = this.detailspnl;
            } else
            if (node.Object is IPolicyChannel)
            {
                this.detailspnl.Controls.Clear();
                RoutingControl routingcontrol = new RoutingControl(node.Object as IPolicyChannel);
                routingcontrol.Width = this.detailspnl.Width;
                routingcontrol.Parent = this.detailspnl;
            }
        }
示例#6
0
 private void button2_Click(object sender, EventArgs e)
 {
     this.detailspnl.Controls.Clear();
     ConditionControl conditioncontrol = new ConditionControl(null);
     conditioncontrol.Width = this.detailspnl.Width;
     conditioncontrol.Parent = this.detailspnl;
 }
示例#7
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager componentResourceManager = new System.ComponentModel.ComponentResourceManager(typeof(diplomat));
     this.nameBox           = new TextBox();
     this.nameLabel         = new Label();
     this.addAssault        = new Button();
     this.removeAssault     = new Button();
     this.description       = new Label();
     this.selection         = new Label();
     this.splitContainer1   = new SplitContainer();
     this.assaultList       = new GameDataList();
     this.columnHeader1     = new ColumnHeader();
     this.splitContainer2   = new SplitContainer();
     this.conditionControl1 = new ConditionControl();
     this.splitContainer3   = new SplitContainer();
     this.splitContainer4   = new SplitContainer();
     this.propertyList      = new ObjectPropertyBox();
     this.referenceList     = new ReferenceList();
     ((ISupportInitialize)this.splitContainer1).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((ISupportInitialize)this.splitContainer2).BeginInit();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     ((ISupportInitialize)this.splitContainer3).BeginInit();
     this.splitContainer3.Panel1.SuspendLayout();
     this.splitContainer3.Panel2.SuspendLayout();
     this.splitContainer3.SuspendLayout();
     ((ISupportInitialize)this.splitContainer4).BeginInit();
     this.splitContainer4.Panel1.SuspendLayout();
     this.splitContainer4.Panel2.SuspendLayout();
     this.splitContainer4.SuspendLayout();
     base.SuspendLayout();
     this.nameBox.Anchor       = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
     this.nameBox.Location     = new Point(46, 6);
     this.nameBox.Name         = "nameBox";
     this.nameBox.Size         = new System.Drawing.Size(208, 20);
     this.nameBox.TabIndex     = 7;
     this.nameBox.TextChanged += new EventHandler(this.textBox1_TextChanged);
     this.nameLabel.AutoSize   = true;
     this.nameLabel.Location   = new Point(3, 9);
     this.nameLabel.Name       = "nameLabel";
     this.nameLabel.Size       = new System.Drawing.Size(38, 13);
     this.nameLabel.TabIndex   = 8;
     this.nameLabel.Text       = "名称:";
     this.addAssault.Anchor    = AnchorStyles.Top | AnchorStyles.Right;
     this.addAssault.Location  = new Point(110, 32);
     this.addAssault.Name      = "addAssault";
     this.addAssault.Size      = new System.Drawing.Size(64, 19);
     this.addAssault.TabIndex  = 10;
     this.addAssault.Text      = "新增";
     this.addAssault.UseVisualStyleBackColor = true;
     this.addAssault.Click      += new EventHandler(this.addAssault_Click);
     this.removeAssault.Anchor   = AnchorStyles.Top | AnchorStyles.Right;
     this.removeAssault.Location = new Point(180, 32);
     this.removeAssault.Name     = "removeAssault";
     this.removeAssault.Size     = new System.Drawing.Size(67, 19);
     this.removeAssault.TabIndex = 9;
     this.removeAssault.Text     = "删除";
     this.removeAssault.UseVisualStyleBackColor = true;
     this.removeAssault.Click     += new EventHandler(this.removeAssault_Click);
     this.description.Anchor       = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
     this.description.Location     = new Point(14, 13);
     this.description.Name         = "description";
     this.description.Size         = new System.Drawing.Size(496, 51);
     this.description.TabIndex     = 1;
     this.description.Text         = "描述";
     this.selection.AutoSize       = true;
     this.selection.Font           = new System.Drawing.Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.selection.Location       = new Point(3, 0);
     this.selection.Name           = "selection";
     this.selection.Size           = new System.Drawing.Size(82, 13);
     this.selection.TabIndex       = 0;
     this.selection.Text           = "以选择的项目";
     this.splitContainer1.Dock     = DockStyle.Fill;
     this.splitContainer1.Location = new Point(0, 0);
     this.splitContainer1.Name     = "splitContainer1";
     this.splitContainer1.Panel1.Controls.Add(this.assaultList);
     this.splitContainer1.Panel1.Controls.Add(this.addAssault);
     this.splitContainer1.Panel1.Controls.Add(this.nameBox);
     this.splitContainer1.Panel1.Controls.Add(this.removeAssault);
     this.splitContainer1.Panel1.Controls.Add(this.nameLabel);
     this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
     this.splitContainer1.Size             = new System.Drawing.Size(772, 594);
     this.splitContainer1.SplitterDistance = 257;
     this.splitContainer1.TabIndex         = 37;
     this.assaultList.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
     this.assaultList.Columns.AddRange(new ColumnHeader[] { this.columnHeader1 });
     this.assaultList.Filter        = null;
     this.assaultList.FullRowSelect = true;
     this.assaultList.GridLines     = true;
     this.assaultList.HideSelection = false;
     this.assaultList.LabelEdit     = true;
     this.assaultList.Location      = new Point(3, 57);
     this.assaultList.MultiSelect   = false;
     this.assaultList.Name          = "assaultList";
     this.assaultList.Size          = new System.Drawing.Size(251, 534);
     this.assaultList.Source        = null;
     this.assaultList.TabIndex      = 0;
     this.assaultList.UseCompatibleStateImageBehavior = false;
     this.assaultList.View                  = View.Details;
     this.assaultList.VirtualMode           = true;
     this.assaultList.AfterLabelEdit       += new LabelEditEventHandler(this.listView1_AfterLabelEdit);
     this.assaultList.SelectedIndexChanged += new EventHandler(this.listView1_SelectedIndexChanged);
     this.columnHeader1.Text                = "攻击列表";
     this.columnHeader1.Width               = 238;
     this.splitContainer2.Dock              = DockStyle.Fill;
     this.splitContainer2.Location          = new Point(0, 0);
     this.splitContainer2.Name              = "splitContainer2";
     this.splitContainer2.Orientation       = Orientation.Horizontal;
     this.splitContainer2.Panel1.Controls.Add(this.conditionControl1);
     this.splitContainer2.Panel2.Controls.Add(this.splitContainer3);
     this.splitContainer2.Size             = new System.Drawing.Size(511, 594);
     this.splitContainer2.SplitterDistance = 190;
     this.splitContainer2.TabIndex         = 0;
     this.conditionControl1.CurrentLine    = null;
     this.conditionControl1.Dock           = DockStyle.Fill;
     this.conditionControl1.Item           = null;
     this.conditionControl1.Location       = new Point(0, 0);
     this.conditionControl1.Name           = "conditionControl1";
     this.conditionControl1.Size           = new System.Drawing.Size(511, 190);
     this.conditionControl1.TabIndex       = 35;
     this.splitContainer3.Dock             = DockStyle.Fill;
     this.splitContainer3.Location         = new Point(0, 0);
     this.splitContainer3.Name             = "splitContainer3";
     this.splitContainer3.Orientation      = Orientation.Horizontal;
     this.splitContainer3.Panel1.Controls.Add(this.splitContainer4);
     this.splitContainer3.Panel2.Controls.Add(this.description);
     this.splitContainer3.Panel2.Controls.Add(this.selection);
     this.splitContainer3.Size             = new System.Drawing.Size(511, 400);
     this.splitContainer3.SplitterDistance = 331;
     this.splitContainer3.TabIndex         = 0;
     this.splitContainer4.Dock             = DockStyle.Fill;
     this.splitContainer4.Location         = new Point(0, 0);
     this.splitContainer4.Name             = "splitContainer4";
     this.splitContainer4.Panel1.Controls.Add(this.propertyList);
     this.splitContainer4.Panel2.Controls.Add(this.referenceList);
     this.splitContainer4.Size             = new System.Drawing.Size(511, 331);
     this.splitContainer4.SplitterDistance = 259;
     this.splitContainer4.TabIndex         = 0;
     this.propertyList.DescriptionControl  = this.description;
     this.propertyList.Dock                = DockStyle.Fill;
     this.propertyList.Item                = null;
     this.propertyList.Location            = new Point(0, 0);
     this.propertyList.Name                = "propertyList";
     this.propertyList.SelectionControl    = this.selection;
     this.propertyList.ShowDescription     = false;
     this.propertyList.Size                = new System.Drawing.Size(259, 331);
     this.propertyList.TabIndex            = 36;
     this.referenceList.DescriptionControl = this.description;
     this.referenceList.Dock               = DockStyle.Fill;
     this.referenceList.Exclusions         = (ArrayList)componentResourceManager.GetObject("referenceList.Exclusions");
     this.referenceList.Location           = new Point(0, 0);
     this.referenceList.Name               = "referenceList";
     this.referenceList.SelectionControl   = this.selection;
     this.referenceList.ShowDescription    = false;
     this.referenceList.Size               = new System.Drawing.Size(248, 331);
     this.referenceList.TabIndex           = 0;
     base.AutoScaleDimensions              = new SizeF(6f, 13f);
     base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     base.ClientSize    = new System.Drawing.Size(772, 594);
     base.Controls.Add(this.splitContainer1);
     base.Name     = "diplomat";
     base.ShowIcon = false;
     this.Text     = "外交官和突击小队";
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((ISupportInitialize)this.splitContainer1).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel2.ResumeLayout(false);
     ((ISupportInitialize)this.splitContainer2).EndInit();
     this.splitContainer2.ResumeLayout(false);
     this.splitContainer3.Panel1.ResumeLayout(false);
     this.splitContainer3.Panel2.ResumeLayout(false);
     this.splitContainer3.Panel2.PerformLayout();
     ((ISupportInitialize)this.splitContainer3).EndInit();
     this.splitContainer3.ResumeLayout(false);
     this.splitContainer4.Panel1.ResumeLayout(false);
     this.splitContainer4.Panel2.ResumeLayout(false);
     ((ISupportInitialize)this.splitContainer4).EndInit();
     this.splitContainer4.ResumeLayout(false);
     base.ResumeLayout(false);
 }
示例#8
0
        private void ShowPanelForConditionGroupCatalogue(IPolicyObjectCollection<IConditionGroup> conditions)
        {
            this.descriptiontxt.Text = "Catalogue for all available Conditions and Condition Groups";

            ConditionGroupCatalogueControl conditiongroupcontrol = new ConditionGroupCatalogueControl();
            this.controlpnl1.Height = conditiongroupcontrol.Height;
            conditiongroupcontrol.Dock = DockStyle.Fill;
            conditiongroupcontrol.Parent = this.controlpnl1;

            ConditionControl conditioncontrol = new ConditionControl(null);
            this.controlpnl2.Height = conditioncontrol.Height;
            conditioncontrol.Dock = DockStyle.Fill;
            conditioncontrol.Parent = this.controlpnl2;
        }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(dialogCollection));
     this.treeView1           = new TreeView();
     this.contextMenu         = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.editItem            = new ToolStripMenuItem();
     this.addNew              = new ToolStripMenuItem();
     this.addItem             = new ToolStripMenuItem();
     this.removeItem          = new ToolStripMenuItem();
     this.toolStripSeparator1 = new ToolStripSeparator();
     this.expandDialogue      = new ToolStripMenuItem();
     this.collapseDialogue    = new ToolStripMenuItem();
     this.packageName         = new TextBox();
     this.label1              = new Label();
     this.eventsList          = new ListViewTrans();
     this.EventsColumn        = new ColumnHeader();
     this.groupBox1           = new GroupBox();
     this.splitContainer1     = new SplitContainer();
     this.splitContainer4     = new SplitContainer();
     this.splitContainer2     = new SplitContainer();
     this.buttonAddNew        = new Button();
     this.buttonAddItem       = new Button();
     this.splitContainer3     = new SplitContainer();
     this.referenceList1      = new ReferenceList();
     this.conditionControl1   = new ConditionControl();
     this.objectPropertyBox1  = new ObjectPropertyBox();
     this.contextMenu.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((ISupportInitialize)this.splitContainer1).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((ISupportInitialize)this.splitContainer4).BeginInit();
     this.splitContainer4.Panel1.SuspendLayout();
     this.splitContainer4.Panel2.SuspendLayout();
     this.splitContainer4.SuspendLayout();
     ((ISupportInitialize)this.splitContainer2).BeginInit();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     ((ISupportInitialize)this.splitContainer3).BeginInit();
     this.splitContainer3.Panel1.SuspendLayout();
     this.splitContainer3.Panel2.SuspendLayout();
     this.splitContainer3.SuspendLayout();
     base.SuspendLayout();
     this.treeView1.ContextMenuStrip = this.contextMenu;
     this.treeView1.Dock             = DockStyle.Fill;
     this.treeView1.HideSelection    = false;
     this.treeView1.Location         = new Point(0, 0);
     this.treeView1.Name             = "treeView1";
     this.treeView1.Size             = new System.Drawing.Size(436, 532);
     this.treeView1.TabIndex         = 0;
     this.treeView1.AfterSelect     += new TreeViewEventHandler(this.treeView1_AfterSelect);
     this.treeView1.NodeMouseClick  += new TreeNodeMouseClickEventHandler(this.treeView1_NodeMouseClick);
     this.contextMenu.Items.AddRange(new ToolStripItem[] { this.editItem, this.addNew, this.addItem, this.removeItem, this.toolStripSeparator1, this.expandDialogue, this.collapseDialogue });
     this.contextMenu.Name         = "contextMenuStrip1";
     this.contextMenu.Size         = new System.Drawing.Size(140, 142);
     this.editItem.Name            = "editItem";
     this.editItem.Size            = new System.Drawing.Size(139, 22);
     this.editItem.Text            = "编辑";
     this.editItem.Click          += new EventHandler(this.editItem_Click);
     this.addNew.Name              = "addNew";
     this.addNew.Size              = new System.Drawing.Size(139, 22);
     this.addNew.Text              = "新增";
     this.addNew.Click            += new EventHandler(this.addNew_Click);
     this.addItem.Name             = "addItem";
     this.addItem.Size             = new System.Drawing.Size(139, 22);
     this.addItem.Text             = "添加已存在的";
     this.addItem.Click           += new EventHandler(this.addItem_Click);
     this.removeItem.Name          = "removeItem";
     this.removeItem.Size          = new System.Drawing.Size(139, 22);
     this.removeItem.Text          = "删除";
     this.removeItem.Click        += new EventHandler(this.removeItem_Click);
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(136, 6);
     this.expandDialogue.Name      = "expandDialogue";
     this.expandDialogue.Size      = new System.Drawing.Size(139, 22);
     this.expandDialogue.Text      = "展开";
     this.expandDialogue.Click    += new EventHandler(this.expandDialogue_Click);
     this.collapseDialogue.Name    = "collapseDialogue";
     this.collapseDialogue.Size    = new System.Drawing.Size(139, 22);
     this.collapseDialogue.Text    = "折叠";
     this.collapseDialogue.Click  += new EventHandler(this.collapseDialogue_Click);
     this.packageName.Anchor       = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
     this.packageName.Location     = new Point(60, 18);
     this.packageName.Margin       = new System.Windows.Forms.Padding(2);
     this.packageName.Name         = "packageName";
     this.packageName.Size         = new System.Drawing.Size(250, 20);
     this.packageName.TabIndex     = 0;
     this.packageName.TextChanged += new EventHandler(this.packageName_TextChanged);
     this.label1.AutoSize          = true;
     this.label1.Location          = new Point(14, 18);
     this.label1.Margin            = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.label1.Name              = "label1";
     this.label1.Size              = new System.Drawing.Size(35, 13);
     this.label1.TabIndex          = 10;
     this.label1.Text              = "名称";
     this.eventsList.Anchor        = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
     this.eventsList.Columns.AddRange(new ColumnHeader[] { this.EventsColumn });
     this.eventsList.FullRowSelect = true;
     this.eventsList.GridLines     = true;
     this.eventsList.HideSelection = false;
     this.eventsList.Location      = new Point(0, 0);
     this.eventsList.Name          = "eventsList";
     this.eventsList.Size          = new System.Drawing.Size(270, 532);
     this.eventsList.TabIndex      = 71;
     this.eventsList.UseCompatibleStateImageBehavior = false;
     this.eventsList.View = View.Details;
     this.eventsList.SelectedIndexChanged += new EventHandler(this.eventsList_SelectedIndexChanged);
     this.EventsColumn.Text  = "事件";
     this.EventsColumn.Width = 263;
     this.groupBox1.Controls.Add(this.referenceList1);
     this.groupBox1.Controls.Add(this.packageName);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Dock              = DockStyle.Fill;
     this.groupBox1.Location          = new Point(0, 0);
     this.groupBox1.Name              = "groupBox1";
     this.groupBox1.Size              = new System.Drawing.Size(343, 250);
     this.groupBox1.TabIndex          = 75;
     this.groupBox1.TabStop           = false;
     this.groupBox1.Text              = "包";
     this.splitContainer1.Dock        = DockStyle.Fill;
     this.splitContainer1.Location    = new Point(0, 0);
     this.splitContainer1.Name        = "splitContainer1";
     this.splitContainer1.Orientation = Orientation.Horizontal;
     this.splitContainer1.Panel1.Controls.Add(this.splitContainer4);
     this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
     this.splitContainer1.Size             = new System.Drawing.Size(1031, 786);
     this.splitContainer1.SplitterDistance = 250;
     this.splitContainer1.TabIndex         = 76;
     this.splitContainer4.Dock             = DockStyle.Fill;
     this.splitContainer4.Location         = new Point(0, 0);
     this.splitContainer4.Name             = "splitContainer4";
     this.splitContainer4.Panel1.Controls.Add(this.groupBox1);
     this.splitContainer4.Panel2.Controls.Add(this.conditionControl1);
     this.splitContainer4.Size             = new System.Drawing.Size(1031, 250);
     this.splitContainer4.SplitterDistance = 343;
     this.splitContainer4.TabIndex         = 76;
     this.splitContainer2.Dock             = DockStyle.Fill;
     this.splitContainer2.Location         = new Point(0, 0);
     this.splitContainer2.Name             = "splitContainer2";
     this.splitContainer2.Panel1.Controls.Add(this.buttonAddNew);
     this.splitContainer2.Panel1.Controls.Add(this.buttonAddItem);
     this.splitContainer2.Panel1.Controls.Add(this.eventsList);
     this.splitContainer2.Panel2.Controls.Add(this.splitContainer3);
     this.splitContainer2.Size             = new System.Drawing.Size(1031, 532);
     this.splitContainer2.SplitterDistance = 343;
     this.splitContainer2.TabIndex         = 0;
     this.buttonAddNew.Anchor   = AnchorStyles.Top | AnchorStyles.Right;
     this.buttonAddNew.Location = new Point(276, 3);
     this.buttonAddNew.Name     = "buttonAddNew";
     this.buttonAddNew.Size     = new System.Drawing.Size(60, 48);
     this.buttonAddNew.TabIndex = 77;
     this.buttonAddNew.Text     = "新增";
     this.buttonAddNew.UseVisualStyleBackColor = true;
     this.buttonAddNew.Click    += new EventHandler(this.addNew_Click);
     this.buttonAddItem.Anchor   = AnchorStyles.Top | AnchorStyles.Right;
     this.buttonAddItem.Location = new Point(276, 57);
     this.buttonAddItem.Name     = "buttonAddItem";
     this.buttonAddItem.Size     = new System.Drawing.Size(60, 61);
     this.buttonAddItem.TabIndex = 74;
     this.buttonAddItem.Text     = "添加对话";
     this.buttonAddItem.UseVisualStyleBackColor = true;
     this.buttonAddItem.Click     += new EventHandler(this.addItem_Click);
     this.splitContainer3.Dock     = DockStyle.Fill;
     this.splitContainer3.Location = new Point(0, 0);
     this.splitContainer3.Name     = "splitContainer3";
     this.splitContainer3.Panel1.Controls.Add(this.treeView1);
     this.splitContainer3.Panel2.Controls.Add(this.objectPropertyBox1);
     this.splitContainer3.Size             = new System.Drawing.Size(684, 532);
     this.splitContainer3.SplitterDistance = 436;
     this.splitContainer3.TabIndex         = 0;
     this.referenceList1.Anchor            = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
     this.referenceList1.Exclusions        = (ArrayList)resources.GetObject("referenceList1.Exclusions");
     this.referenceList1.Location          = new Point(6, 43);
     this.referenceList1.Name                = "referenceList1";
     this.referenceList1.ReadOnly            = false;
     this.referenceList1.ShowDescription     = true;
     this.referenceList1.Size                = new System.Drawing.Size(330, 201);
     this.referenceList1.TabIndex            = 11;
     this.conditionControl1.CurrentLine      = null;
     this.conditionControl1.Dock             = DockStyle.Fill;
     this.conditionControl1.Item             = null;
     this.conditionControl1.Location         = new Point(0, 0);
     this.conditionControl1.Name             = "conditionControl1";
     this.conditionControl1.Size             = new System.Drawing.Size(684, 250);
     this.conditionControl1.TabIndex         = 67;
     this.objectPropertyBox1.Dock            = DockStyle.Fill;
     this.objectPropertyBox1.Item            = null;
     this.objectPropertyBox1.Location        = new Point(0, 0);
     this.objectPropertyBox1.Name            = "objectPropertyBox1";
     this.objectPropertyBox1.ShowDescription = true;
     this.objectPropertyBox1.Size            = new System.Drawing.Size(244, 532);
     this.objectPropertyBox1.TabIndex        = 74;
     base.AutoScaleDimensions                = new SizeF(6f, 13f);
     base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     base.ClientSize    = new System.Drawing.Size(1031, 786);
     base.Controls.Add(this.splitContainer1);
     base.Name       = "dialogCollection";
     base.ShowIcon   = false;
     this.Text       = "对话包";
     base.Activated += new EventHandler(this.dialogCollection_Activated);
     this.contextMenu.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((ISupportInitialize)this.splitContainer1).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.splitContainer4.Panel1.ResumeLayout(false);
     this.splitContainer4.Panel2.ResumeLayout(false);
     ((ISupportInitialize)this.splitContainer4).EndInit();
     this.splitContainer4.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel2.ResumeLayout(false);
     ((ISupportInitialize)this.splitContainer2).EndInit();
     this.splitContainer2.ResumeLayout(false);
     this.splitContainer3.Panel1.ResumeLayout(false);
     this.splitContainer3.Panel2.ResumeLayout(false);
     ((ISupportInitialize)this.splitContainer3).EndInit();
     this.splitContainer3.ResumeLayout(false);
     base.ResumeLayout(false);
 }