Index: src/Common/DelftTools.Controls.Swf/Charting/Tools/ExportChartAsImageChartTool.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- src/Common/DelftTools.Controls.Swf/Charting/Tools/ExportChartAsImageChartTool.cs (.../ExportChartAsImageChartTool.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ src/Common/DelftTools.Controls.Swf/Charting/Tools/ExportChartAsImageChartTool.cs (.../ExportChartAsImageChartTool.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -5,6 +5,7 @@ { public class ExportChartAsImageChartTool : IChartViewContextMenuTool { + public event EventHandler ActiveChanged; private bool active; public ExportChartAsImageChartTool(IChartView chartView) @@ -16,7 +17,10 @@ public bool Active { - get { return active; } + get + { + return active; + } set { active = value; @@ -27,8 +31,6 @@ } } - public event EventHandler ActiveChanged; - public bool Enabled { get; set; } public void OnBeforeContextMenu(ContextMenuStrip menu) @@ -46,4 +48,4 @@ ChartView.ExportAsImage(); } } -} +} \ No newline at end of file