- Timestamp:
- 06/20/17 09:44:17 (8 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 14369
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Visualization.ChartControlsExtensions/3.3/EnhancedChart.cs
r14670 r15039 28 28 namespace HeuristicLab.Visualization.ChartControlsExtensions { 29 29 public partial class EnhancedChart : Chart { 30 30 31 private ImageExportDialog exportDialog; 32 33 private ImageExportDialog ExportDialog { 34 get { return exportDialog ?? (exportDialog = new ImageExportDialog(this)); } 35 } 31 36 32 37 public EnhancedChart() 33 38 : base() { 34 39 InitializeComponent(); 35 exportDialog = new ImageExportDialog(this);36 40 EnableDoubleClickResetsZoom = true; 37 41 EnableMiddleClickPanning = true; … … 166 170 167 171 private void exportToolStripMenuItem_Click(object sender, EventArgs e) { 168 exportDialog.ShowDialog();172 ExportDialog.ShowDialog(); 169 173 } 170 174
Note: See TracChangeset
for help on using the changeset viewer.