Пример #1
0
		public MainWindow () {
			//set the window title
			Assembly ass = Assembly.GetExecutingAssembly ();
			this.Title = string.Format ("TinyCalc {0}, {1}", FileVersionInfo.GetVersionInfo (ass.Location).FileVersion, Strings.ByMe);

			this.History = new History (); 
			this.HistoryIndex = -1;

			this.AutocompleteList = new AutocompleteList ();
			
			InitializeComponent ();
		}