コード例 #1
0
        public IDictionaryPropertyEditor()
        {
            this.Hints        |= HintFlags.HasButton | HintFlags.ButtonEnabled;
            this.dictKeySetter = DefaultPropertySetter;

            this.offsetEditor              = new NumericPropertyEditor();
            this.offsetEditor.EditedType   = typeof(uint);
            this.offsetEditor.PropertyName = "Offset";
            this.offsetEditor.Getter       = this.OffsetValueGetter;
            this.offsetEditor.Setter       = this.OffsetValueSetter;
        }
コード例 #2
0
		public IDictionaryPropertyEditor()
		{
			this.Hints |= HintFlags.HasButton | HintFlags.ButtonEnabled;
			this.dictKeySetter = DefaultPropertySetter;

			this.offsetEditor = new NumericPropertyEditor();
			this.offsetEditor.EditedType = typeof(uint);
			this.offsetEditor.PropertyName = "Offset";
			this.offsetEditor.Getter = this.OffsetValueGetter;
			this.offsetEditor.Setter = this.OffsetValueSetter;
		}