1 write to operationsListBox
System.WorkflowServices (1)
System\Workflow\Activities\Design\OperationPickerDialog.designer.cs (1)
43this.operationsListBox = new System.Workflow.Activities.Design.RichListBox();
32 references to operationsListBox
System.WorkflowServices (32)
System\Workflow\Activities\Design\OperationPickerDialog.cs (22)
40this.serviceContracts = new ServiceContractListItemList(this.operationsListBox); 41this.operationsListBox.ServiceProvider = this.serviceProvider; 84serviceContract = new ServiceContractListItem(this.operationsListBox); 104serviceContract = new ServiceContractListItem(this.operationsListBox); 133if (this.operationsListBox.Items.Count == 0) 135this.operationsListBox.Items.Add(new HelpListItem()); 141ServiceContractListItem serviceContractListItem = this.operationsListBox.SelectedItem as ServiceContractListItem; 157operationsListBox.Items.Add(serviceContractListItem); 230ServiceContractListItem contractItem = new ServiceContractListItem(this.operationsListBox); 262object selectedObject = operationsListBox.SelectedItem; 298this.operationsListBox.DoubleClick += new EventHandler(operationsListBox_DoubleClick); 299this.operationsListBox.SelectedIndexChanged += new EventHandler(operationsListBox_SelectedIndexChanged); 313if (operationsListBox.Items.Count > 0) 315operationsListBox.SetSelected(0, true); 328if (operationsListBox.SelectedItemViewControl != null) 342operationsListBox.SelectedItemViewControl.Dock = DockStyle.Fill; 343detailsViewPanel.Controls.Add(operationsListBox.SelectedItemViewControl); 345if (operationsListBox.SelectedItem is ServiceOperationListItem) 352ServiceContractListItem serviceContractListItem = this.operationsListBox.SelectedItem as ServiceContractListItem; 364if (this.operationsListBox.Items.Count > 0 && this.operationsListBox.Items[0] is HelpListItem) 366this.operationsListBox.Items.Clear();
System\Workflow\Activities\Design\OperationPickerDialog.designer.cs (10)
110this.operationsPanel.Controls.Add(this.operationsListBox); 120this.operationsListBox.BackColor = System.Drawing.SystemColors.Window; 121this.operationsListBox.BorderStyle = System.Windows.Forms.BorderStyle.None; 122this.operationsListBox.Dock = System.Windows.Forms.DockStyle.Fill; 123this.operationsListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable; 124this.operationsListBox.Editable = false; 125resources.ApplyResources(this.operationsListBox, "operationsListBox"); 126this.operationsListBox.FormattingEnabled = true; 127this.operationsListBox.Name = "operationsListBox"; 128this.operationsListBox.SelectedItemViewControl = null;