File: Preferences.cs

package info (click to toggle)
mono-tools 4.2-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 13,868 kB
  • sloc: cs: 100,909; sh: 3,845; makefile: 2,040; xml: 126
file content (30 lines) | stat: -rw-r--r-- 461 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Preferences.cs created with MonoDevelop
// User: lupus at 7:44 PMĀ 9/19/2008
//
// To change standard headers go to Edit->Preferences->Coding->Standard Headers
//

using System;

namespace mperfmon
{
	
	
	public partial class Preferences : Gtk.Dialog
	{
		
		public Preferences()
		{
			this.Build();
		}

		public uint Timeout {
			get {
				return (uint)(update_interval.Value * 1000);
			}
			set {
				update_interval.Value = value/1000.0;
			}
		}
	}
}