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 FlowConteinerSetting : UserControl { public FlowConteinerSetting() { InitializeComponent(); } public bool HideBar(BarShow barShow) { if (barShow == BarShow.ShowSetting) { this.Visible = true; } else { this.Visible = false; } return this.Visible; } } }