MoonTest.System.Windows.Controls.ComboBoxPoker.ComboBoxPoker C# (CSharp) Method

ComboBoxPoker() public method

public ComboBoxPoker ( ) : System
return System
		public ComboBoxPoker ()
		{
			CallBaseOnItemsChanged = true;
			CallBaseOnDropDown = true;
			this.SelectionChanged += (o, e) => methods.Add (new Value { MethodName = "SelectionChangedEvent", ReturnValue = e });
			this.DropDownClosed += delegate { methods.Add (new Value { MethodName = "DropDownClosedEvent" }); };
			this.DropDownOpened += delegate { methods.Add (new Value { MethodName = "DropDownOpenedEvent" }); };
		}