private void QueryResult_MouseDoubleClick(object sender, MouseEventArgs e)
 {
     ViewerResultGraph vrg = m_ViewerResult.GetOverlapGraph(e.Location);
     if(vrg != null)
     {
         m_CellPropertyForm = new CellProperty(vrg);
         m_CellPropertyForm.Show();
     }
 }
 public QueryResult()
 {
     InitializeComponent();
     InitializeFormLayout();
     m_CellPropertyForm = null;
 }