コード例 #1
0
 /// <summary>
 /// Create a native tool tip control for this listview
 /// </summary>
 protected virtual void CreateToolTip()
 {
     ToolTip = new ToolTipControl();
     ToolTip.Create(Handle);
     ToolTip.AddTool(this);
     ToolTip.Showing += ListView.headerToolTip_Showing;
 }
コード例 #2
0
 /// <summary>
 /// Create a ToolTipControl to manage the tooltip control used by the listview control
 /// </summary>
 protected virtual void CreateCellToolTip()
 {
     this.cellToolTip = new ToolTipControl();
     this.cellToolTip.AssignHandle(NativeMethods.GetTooltipControl(this));
     this.cellToolTip.Showing += new EventHandler<ToolTipShowingEventArgs>(HandleCellToolTipShowing);
     this.cellToolTip.SetMaxWidth();
     NativeMethods.MakeTopMost(this.cellToolTip);
 }
コード例 #3
0
ファイル: NativeMethods.cs プロジェクト: VicBoss/KR
 static public IntPtr SetTooltipControl(ListView lv, ToolTipControl tooltip) {
     return SendMessage(lv.Handle, LVM_SETTOOLTIPS, 0, tooltip.Handle);
 }
コード例 #4
0
 public static IntPtr SetTooltipControl(ListView lv, ToolTipControl tooltip)
 {
     return(SendMessage(lv.Handle, LVM_SETTOOLTIPS, 0, tooltip.Handle));
 }
コード例 #5
0
ファイル: ObjectListView.cs プロジェクト: rxantos/tesv-snip
 /// <summary>
 /// Create a ToolTipControl to manage the tooltip control used by the listview control
 /// </summary>
 protected virtual void CreateCellToolTip()
 {
     cellToolTip = new ToolTipControl();
     cellToolTip.AssignHandle(NativeMethods.GetTooltipControl(this));
     cellToolTip.Showing += HandleCellToolTipShowing;
     cellToolTip.SetMaxWidth();
     NativeMethods.MakeTopMost(cellToolTip);
 }
コード例 #6
0
ファイル: HeaderControl.cs プロジェクト: rxantos/tesv-snip
 /// <summary>
 /// Create a native tool tip control for this listview
 /// </summary>
 protected virtual void CreateToolTip()
 {
     ToolTip = new ToolTipControl();
     ToolTip.Create(Handle);
     ToolTip.AddTool(this);
     ToolTip.Showing += ListView.headerToolTip_Showing;
 }
コード例 #7
0
ファイル: NativeMethods.cs プロジェクト: etupper/PFM
 public static IntPtr SetTooltipControl(ListView lv, ToolTipControl tooltip)
 {
     return(SendMessage(lv.Handle, 0x104a, 0, tooltip.Handle));
 }