SCCManager/Remontor/FlowContainerWords.cs

52 lines
1.0 KiB
C#

using Remontor.History;
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
{
internal partial class FlowContainerWords : UserControl
{
private bool Showed = true;
private Size NormalSize;
public FlowContainerWords()
{
InitializeComponent();
NormalSize = this.Size;
}
public bool HideBar(BarShow barShow)
{
if(barShow == BarShow.ShowWords)
{
this.Visible = true;
}
else
{
this.Visible = false;
}
return this.Visible;
}
public void UpdateHistory(List<HistoryItem> items)
{
}
private void flowLayoutPanel1_Paint(object sender, PaintEventArgs e)
{
}
}
}