1 write to protectionLevelComboBox
System.WorkflowServices (1)
System\Workflow\Activities\Design\ServiceOperationDetailViewControl.designer.cs (1)
48this.protectionLevelComboBox = new System.Windows.Forms.ComboBox();
15 references to protectionLevelComboBox
System.WorkflowServices (15)
System\Workflow\Activities\Design\ServiceOperationDetailViewControl.cs (10)
43this.protectionLevelComboBox.Items.Add(SR2.GetString(SR2.UseRuntimeDefaults)); 44this.protectionLevelComboBox.Items.Add(ProtectionLevel.None); 45this.protectionLevelComboBox.Items.Add(ProtectionLevel.Sign); 46this.protectionLevelComboBox.Items.Add(ProtectionLevel.EncryptAndSign); 81this.protectionLevelComboBox.SelectedItem = workflowOperationListItem.Operation.ProtectionLevel; 85this.protectionLevelComboBox.SelectedItem = SR2.GetString(SR2.UseRuntimeDefaults); 118this.protectionLevelComboBox.SelectedValueChanged += new System.EventHandler(this.protectionLevelComboBoxSelectedValueChanged); 541if (this.protectionLevelComboBox.SelectedItem.Equals(SR2.GetString(SR2.UseRuntimeDefaults))) 547item.Operation.ProtectionLevel = (ProtectionLevel) this.protectionLevelComboBox.SelectedItem; 606this.protectionLevelComboBox.Enabled = editable;
System\Workflow\Activities\Design\ServiceOperationDetailViewControl.designer.cs (5)
168this.propertiesTabPage.Controls.Add(this.protectionLevelComboBox); 177this.protectionLevelComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 178resources.ApplyResources(this.protectionLevelComboBox, "protectionLevelComboBox"); 179this.protectionLevelComboBox.FormattingEnabled = true; 180this.protectionLevelComboBox.Name = "protectionLevelComboBox";