Index: src/Common/DelftTools.Controls.Swf/DataEditorGenerator/SelfCollapsingPanel.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- src/Common/DelftTools.Controls.Swf/DataEditorGenerator/SelfCollapsingPanel.cs (.../SelfCollapsingPanel.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ src/Common/DelftTools.Controls.Swf/DataEditorGenerator/SelfCollapsingPanel.cs (.../SelfCollapsingPanel.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -6,20 +6,22 @@ { public class SelfCollapsingPanel : Panel { + public event EventHandler> VisibleWithoutParentChanged; private bool visibleWithoutParent = true; - + /// /// Gets Visible when this panel would not have been added to a panel. /// It ignores the state of the parent control so it will be more likely that this value /// will be true. /// public bool VisibleWithoutParent { - get { return visibleWithoutParent; } + get + { + return visibleWithoutParent; + } } - public event EventHandler> VisibleWithoutParentChanged; - protected override void SetVisibleCore(bool value) { base.SetVisibleCore(value); @@ -37,4 +39,4 @@ } } } -} +} \ No newline at end of file