22 lines
514 B
C#
22 lines
514 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Windows.Forms;
|
|
|
|
namespace DepartmentPortalDesctop
|
|
{
|
|
public partial class FormMain : Form
|
|
{
|
|
private Dictionary<Guid, Control> controls;
|
|
public FormMain()
|
|
{
|
|
InitializeComponent();
|
|
controls = new Dictionary<Guid, Control>();
|
|
}
|
|
|
|
private void ButtonShowHideControlList_Click(object sender, EventArgs e)
|
|
{
|
|
ButtonShowHideControlList.Text = panelControls.Visible ? ">" : "<";
|
|
panelControls.Visible = !panelControls.Visible;
|
|
}
|
|
}
|
|
} |