mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
52 lines
1.8 KiB
C#
52 lines
1.8 KiB
C#
namespace TweetDuck.Core.Notification {
|
|
partial class FormNotificationTweet {
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing) {
|
|
if (disposing && (components != null)) {
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent() {
|
|
this.components = new System.ComponentModel.Container();
|
|
this.timerCursorCheck = new System.Windows.Forms.Timer(this.components);
|
|
this.timerIdlePauseCheck = new System.Windows.Forms.Timer(this.components);
|
|
this.SuspendLayout();
|
|
//
|
|
// timerCursorCheck
|
|
//
|
|
this.timerCursorCheck.Interval = 200;
|
|
this.timerCursorCheck.Tick += new System.EventHandler(this.timerCursorCheck_Tick);
|
|
//
|
|
// timerIdlePauseCheck
|
|
//
|
|
this.timerIdlePauseCheck.Interval = 750;
|
|
this.timerIdlePauseCheck.Tick += new System.EventHandler(this.timerIdlePauseCheck_Tick);
|
|
//
|
|
// FormNotificationTweet
|
|
//
|
|
this.ResumeLayout(true);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Timer timerCursorCheck;
|
|
private System.Windows.Forms.Timer timerIdlePauseCheck;
|
|
}
|
|
} |