Click here to Skip to main content
15,897,291 members
Home / Discussions / C#
   

C#

 
QuestionLeft-Click a Button Pin
Dave McCool7-Feb-06 22:27
Dave McCool7-Feb-06 22:27 
AnswerRe: Left-Click a Button Pin
Ingo7-Feb-06 22:57
Ingo7-Feb-06 22:57 
GeneralRe: Left-Click a Button Pin
Dave McCool8-Feb-06 2:06
Dave McCool8-Feb-06 2:06 
GeneralRe: Left-Click a Button Pin
Ingo8-Feb-06 2:26
Ingo8-Feb-06 2:26 
GeneralRe: Left-Click a Button Pin
Dave McCool9-Feb-06 0:35
Dave McCool9-Feb-06 0:35 
GeneralRe: Left-Click a Button Pin
Dave McCool26-Feb-06 22:08
Dave McCool26-Feb-06 22:08 
QuestionHow to place images in the ListBox items? Pin
Saravanan_article7-Feb-06 22:13
Saravanan_article7-Feb-06 22:13 
AnswerRe: How to place images in the ListBox items? Pin
Libor Tinka7-Feb-06 23:27
Libor Tinka7-Feb-06 23:27 
First, create a class that contains image, something like this:

<br />
public class ListBoxItem {<br />
<br />
  public Image img;<br />
  public string text;<br />
<br />
  public override ToString() {<br />
    return text;<br />
  }<br />
}<br />


Then you need to create owner-drawn ListBox (which iherits a ListBox class).

First, set DrawMode property to OwnerDrawFixed or OwnerDrawVariable (i like the second one).

Then you need to override OnMeasureItem and OnDrawItem methods. Make sure, you've set right size for the item in measuring method so you can draw it properly later. If you want to use images with alpha channel, use ImageList.Draw which can do the job.
GeneralRe: How to place images in the ListBox items? Pin
Saravanan_article7-Feb-06 23:44
Saravanan_article7-Feb-06 23:44 
QuestionIP Lookup Pin
quocbao7-Feb-06 21:52
quocbao7-Feb-06 21:52 
AnswerRe: IP Lookup Pin
Mridang Agarwalla7-Feb-06 23:39
Mridang Agarwalla7-Feb-06 23:39 
AnswerRe: IP Lookup Pin
WetRivrRat8-Feb-06 2:39
WetRivrRat8-Feb-06 2:39 
Questionmsde2000 backup Pin
JacquesDP7-Feb-06 21:52
JacquesDP7-Feb-06 21:52 
QuestionGDI Graphics Z-Order Pin
Dowfen7-Feb-06 21:49
Dowfen7-Feb-06 21:49 
AnswerRe: GDI Graphics Z-Order Pin
Ingo7-Feb-06 22:49
Ingo7-Feb-06 22:49 
GeneralRe: GDI Graphics Z-Order Pin
Dowfen8-Feb-06 6:38
Dowfen8-Feb-06 6:38 
QuestionConvert Ink Data Pin
realmontanakid7-Feb-06 21:42
realmontanakid7-Feb-06 21:42 
QuestionApplication Update Pin
JacquesDP7-Feb-06 21:22
JacquesDP7-Feb-06 21:22 
AnswerRe: Application Update Pin
Ingo7-Feb-06 23:00
Ingo7-Feb-06 23:00 
QuestionTextbox zooming Pin
NewbieDude7-Feb-06 21:22
NewbieDude7-Feb-06 21:22 
AnswerRe: Textbox zooming Pin
Stanciu Vlad7-Feb-06 21:41
Stanciu Vlad7-Feb-06 21:41 
GeneralRe: Textbox zooming Pin
NewbieDude7-Feb-06 21:43
NewbieDude7-Feb-06 21:43 
GeneralRe: Textbox zooming Pin
Ingo7-Feb-06 23:06
Ingo7-Feb-06 23:06 
QuestionAutomated windows logon Pin
Esmo20007-Feb-06 20:59
Esmo20007-Feb-06 20:59 
AnswerRe: Automated windows logon Pin
Sean Michael Murphy8-Feb-06 7:07
Sean Michael Murphy8-Feb-06 7:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.