-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.cs
More file actions
32 lines (29 loc) · 1.01 KB
/
Form1.cs
File metadata and controls
32 lines (29 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using DevExpress.XtraEditors;
using DevExpress.XtraEditors.Controls;
namespace WindowsApplication45 {
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
listBoxControl1.ToolTipController = toolTipController1;
toolTipController1.GetActiveObjectInfo+=toolTipController1_GetActiveObjectInfo;
}
private void toolTipController1_GetActiveObjectInfo(object sender, DevExpress.Utils.ToolTipControllerGetActiveObjectInfoEventArgs e) {
ListBoxControl listBoxControl = e.SelectedControl as ListBoxControl;
if(listBoxControl == null)
return;
int index = listBoxControl.IndexFromPoint(e.ControlMousePosition);
if(index != -1) {
string item = listBoxControl.GetItem(index) as string;
object obj = index.ToString() + item;
e.Info = new DevExpress.Utils.ToolTipControlInfo(obj, item);
}
}
}
}