Fixed Issue 66.

This commit is contained in:
Michael Möller
2010-07-04 12:12:37 +00:00
parent eaf2e04d35
commit a72af71590
10 changed files with 551 additions and 16 deletions

View File

@@ -455,5 +455,12 @@ namespace OpenHardwareMonitor.GUI {
fahrenheitToolStripMenuItem.Checked = true;
UnitManager.TemperatureUnit = TemperatureUnit.Fahrenheit;
}
private void sumbitReportToolStripMenuItem_Click(object sender, EventArgs e)
{
ReportForm form = new ReportForm();
form.Report = computer.GetReport();
form.ShowDialog();
}
}
}