Beispiel #1
0
 protected virtual void AddDelegate(DelegateType newDelegate)
 {
     AddEntity(newDelegate);
 }
Beispiel #2
0
		public void ShowDialog(DelegateType parent)
		{
			if (parent != null) {
				this.parent = parent;
				this.Text = string.Format(Strings.ItemsOfType, parent.Name);
				FillList();

				base.ShowDialog();
			}
		}
Beispiel #3
0
		/// <exception cref="ArgumentNullException">
		/// <paramref name="_delegate"/> is null.
		/// </exception>
		internal DelegateShape(DelegateType _delegate) : base(_delegate)
		{
			this._delegate = _delegate;
			UpdateMinSize();
		}
		private void WriteDelegate(DelegateType _delegate)
		{
			WriteLine(_delegate.GetDeclaration());
		}