0
我正在使用ObjectListView!太棒了!我有一個問題OLV使用細節,項目列是按鈕!如何設置按鈕圖標?我很抱歉寫錯了:)帶圖標的C#ObjectListView按鈕?
我正在使用ObjectListView!太棒了!我有一個問題OLV使用細節,項目列是按鈕!如何設置按鈕圖標?我很抱歉寫錯了:)帶圖標的C#ObjectListView按鈕?
假設!您在ObjectListView
中有一個名爲olvButton
的列。您只需創建ImageGetter
代表,同時初始化您ObjectListView
並返回圖像。
private void InitializeObjectListView()
{
//Other settings for ObjectListView
this.ObjectLV.RowHeight = 40;
this.ObjectLV.EmptyListMsg = "No item found";
//Set Image index for Button Column
this.olvButton.ImageGetter = delegate(object x)
{
//ImageList is a control in which I have added one Image.
return imagesList.Images[0];
};
}
欲瞭解更多信息Have a look at this
是一組按鈕的圖標示例刪除圖標或編輯iicon – DasturchiUZ