pascalabcnet/VisualPascalABCNET/FormsDesignerBinding/PropertiesForm.cs

38 lines
980 B
C#
Raw Permalink Normal View History

// Copyright (c) Ivan Bondarev, Stanislav Mikhalkovich (for details please see \doc\copyright.txt)
2015-06-02 23:06:57 +03:00
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
using System;
2015-05-14 22:35:07 +03:00
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using WeifenLuo.WinFormsUI.Docking;
namespace VisualPascalABC
{
public partial class PropertiesForm : DockContent
{
public PropertiesForm()
{
InitializeComponent();
2018-03-04 14:18:56 +03:00
TabText = "M_PROPERTIES";
2015-05-14 22:35:07 +03:00
}
private void PropertiesForm_Load(object sender, EventArgs e)
{
}
private void PropertiesForm_FormClosing(object sender, FormClosingEventArgs e)
{
if (e.CloseReason == CloseReason.UserClosing)
{
e.Cancel = true;
this.Hide();
}
}
}
}