pascalabcnet/VisualPascalABCNET/IB/Debugger/AddWatchForm.cs

41 lines
798 B
C#
Raw Permalink Normal View History

// Copyright (c) Ivan Bondarev, Stanislav Mikhalkovich (for details please see \doc\copyright.txt)
2015-06-02 22:52:35 +03:00
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
2015-05-14 22:35:07 +03:00
using System;
using System.Drawing;
using System.Windows.Forms;
namespace VisualPascalABC
{
/// <summary>
/// Description of AddWatchForm.
/// </summary>
public partial class AddWatchForm : Form
{
public AddWatchForm()
{
//
// The InitializeComponent() call is required for Windows Forms designer support.
//
InitializeComponent();
//
// TODO: Add constructor code after the InitializeComponent() call.
//
}
public string EditValue
{
get
{
return this.tbName.Text;
}
set
{
this.tbName.Text = value;
this.tbName.Select();
}
}
}
}