コード例 #1
0
 public VistaTreeView()
 {
     //make it a Vista style tree view
     Win32Api.SetWindowTheme(this.Handle, "explorer", null);
     this.HotTracking = true; //important
     this.ShowLines   = false;
     Win32Api.SendMessage(this.Handle, Win32Api.TVM_SETEXTENDEDSTYLE, 0, Win32Api.TVS_EX_FADEINOUTEXPANDOS);
 }
コード例 #2
0
ファイル: CueTextBox.cs プロジェクト: BGCX067/faim-svn-to-git
 private void SetCueText()
 {
     //tell windows to show the cue
     Win32Api.SendMessage(this.Handle, Win32Api.EM_SETCUEBANNER, IntPtr.Zero, strCue);
 }