SCCManager/Remontor/FlowContainer.cs

36 lines
731 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Remontor
{
public partial class FlowContainer : UserControl
{
private bool Showed = true;
private Size NormalSize;
public FlowContainer()
{
InitializeComponent();
NormalSize = this.Size;
}
public bool HideBar()
{
this.Visible =! this.Visible;
return this.Visible;
}
private void flowLayoutPanel1_Paint(object sender, PaintEventArgs e)
{
}
}
}