public override void LoadPanelContents()
		{
			InitializeHelper();
			
			NameValueListEditor editor = new NameValueListEditor();
			editor.ListChanged += NameValueEditorListChanged;
			SemicolonSeparatedNameValueListBinding b = new SemicolonSeparatedNameValueListBinding(editor);
			helper.AddBinding("DefineConstants", b);
			Controls.Add(editor);
			b.CreateLocationButton(editor);

			helper.AddConfigurationSelector(this);
		}
        public override void LoadPanelContents()
        {
            InitializeHelper();

            NameValueListEditor editor = new NameValueListEditor();

            editor.ListChanged += NameValueEditorListChanged;
            SemicolonSeparatedNameValueListBinding b = new SemicolonSeparatedNameValueListBinding(editor);

            helper.AddBinding("DefineConstants", b);
            Controls.Add(editor);
            b.CreateLocationButton(editor);

            helper.AddConfigurationSelector(this);
        }
 public SemicolonSeparatedNameValueListBinding(NameValueListEditor editor)
 {
     this.editor = editor;
     TreatPropertyValueAsLiteral = false;
 }
		public SemicolonSeparatedNameValueListBinding(NameValueListEditor editor)
		{
			this.editor = editor;
			TreatPropertyValueAsLiteral = false;
		}