Added code to watch the resize of the annotation panel

This commit is contained in:
Rich 2009-05-05 20:47:52 +00:00
parent 4b0efec15c
commit 9ec25b6a15

View File

@ -90,6 +90,9 @@ namespace Volian.Controls.Library
public AnnotationDetails() public AnnotationDetails()
{ {
InitializeComponent(); InitializeComponent();
#if(DEBUG)
//Resize+=new EventHandler(AnnotationDetails_Resize); // Debug the resize event
#endif
} }
#endregion #endregion
@ -297,6 +300,10 @@ namespace Volian.Controls.Library
} }
#endregion #endregion
private void AnnotationDetails_Resize(object sender, EventArgs e)
{
vlnStackTrace.ShowStackLocal(string.Format("Resize - Height = {0}",Height),3,4);
//vlnStackTrace.ShowStack(string.Format("Resize - Height = {0}", Height));
}
} }
} }