C# Class Thinktecture.Tools.Web.Services.WsdlWizard.WsdlWizardForm.MessageNameTextBoxController

Represents a custom controller for dynamically created control for the custom message name.
Mostrar archivo Open project: WSCF/WSCF

Public Methods

Method Description
MessageNameTextBoxController ( TextBox messageNameTextBox, CheckBox messageNameCheckBox, Message message, PropertyPane messageLabel ) : System

Initializes a new instance of MessageNameTextBoxController class with the specified values.

Private Methods

Method Description
CheckBox_CheckedChanged ( object sender, EventArgs e ) : void

Performs the actions when the check box status is changed.

If the check box is unchecked this method will reset the message name to the initial name.

TextBox_TextChanged ( object sender, EventArgs e ) : void

Performs the actions when the content of the text box changes.

This method updates the current message's message name when updating the text box.

Method Details

MessageNameTextBoxController() public method

Initializes a new instance of MessageNameTextBoxController class with the specified values.
public MessageNameTextBoxController ( TextBox messageNameTextBox, CheckBox messageNameCheckBox, Message message, PropertyPane messageLabel ) : System
messageNameTextBox System.Windows.Forms.TextBox Reference to the text box which contains the message name.
messageNameCheckBox System.Windows.Forms.CheckBox Reference to the check box which indicates whether the customized message name is used or not.
message Thinktecture.Tools.Web.Services.ServiceDescription.Message Reference to the current .
messageLabel PropertyPane Reference to the tree view node which displays the message name.
return System