コード例 #1
0
 public Color GetSelectionColor()
 {
     if (control.InvokeRequired)
     {
         GetSelectionColorDelegate del = new GetSelectionColorDelegate(GetSelectionColor);
         return (Color)control.Invoke(del);
     }
     else return control.SelectionColor;
 }
コード例 #2
0
 public Color GetSelectionColor()
 {
     if (control.InvokeRequired)
     {
         GetSelectionColorDelegate del = new GetSelectionColorDelegate(GetSelectionColor);
         return((Color)control.Invoke(del));
     }
     else
     {
         return(control.SelectionColor);
     }
 }