Click here to Skip to main content
16,013,918 members
Home / Discussions / C#
   

C#

 
GeneralRe: xml in datagrid Pin
bertcox24-May-04 4:58
bertcox24-May-04 4:58 
GeneralRe: xml in datagrid Pin
Heath Stewart24-May-04 5:02
protectorHeath Stewart24-May-04 5:02 
GeneralRe: xml in datagrid Pin
bertcox24-May-04 5:26
bertcox24-May-04 5:26 
GeneralRe: xml in datagrid Pin
Heath Stewart24-May-04 5:32
protectorHeath Stewart24-May-04 5:32 
GeneralRe: xml in datagrid Pin
bertcox24-May-04 5:35
bertcox24-May-04 5:35 
QuestionGDI+:How to capture a treeview to bmp? Pin
CNU23-May-04 23:23
CNU23-May-04 23:23 
AnswerRe: GDI+:How to capture a treeview to bmp? Pin
Dave Kreskowiak24-May-04 4:02
mveDave Kreskowiak24-May-04 4:02 
AnswerRe: GDI+:How to capture a treeview to bmp? Pin
Heath Stewart24-May-04 4:14
protectorHeath Stewart24-May-04 4:14 
You can't do this by taking a screenshot because it will only contain the nodes in the client region. You should instead consider creating a Bitmap large enough to hold all the nodes (you could calculate this using TreeView.ItemHeight times the total number of items). Then recursively enumerate through your TreeNodes and paint them on the Bitmap using a Graphics object you obtained from Graphics.FromImage.

This is really the only way to capture the complete TreeView since, like I said before, a screen capture would only capture the client region (the currently visible region).

 

Microsoft MVP, Visual C#
My Articles
QuestionCheck for Invalid Characters ? Pin
azusakt23-May-04 22:53
azusakt23-May-04 22:53 
AnswerRe: Check for Invalid Characters ? Pin
Colin Angus Mackay23-May-04 23:35
Colin Angus Mackay23-May-04 23:35 
AnswerRe: Check for Invalid Characters ? Pin
leppie24-May-04 11:29
leppie24-May-04 11:29 
GeneralRe: Check for Invalid Characters ? Pin
azusakt24-May-04 15:28
azusakt24-May-04 15:28 
Generalinteract with an interactive cli program Pin
humba23-May-04 22:38
humba23-May-04 22:38 
GeneralDeleting a listbox item Pin
Jason Ranin23-May-04 21:50
Jason Ranin23-May-04 21:50 
GeneralRe: Deleting a listbox item Pin
Member 26118823-May-04 22:18
Member 26118823-May-04 22:18 
GeneralRe: Deleting a listbox item Pin
thomasa23-May-04 22:27
thomasa23-May-04 22:27 
GeneralRe: Deleting a listbox item Pin
Jason Ranin24-May-04 15:12
Jason Ranin24-May-04 15:12 
GeneralRe: Deleting a listbox item Pin
thomasa24-May-04 22:47
thomasa24-May-04 22:47 
GeneralRe: Deleting a listbox item Pin
Bojan Rajkovic27-May-04 16:11
Bojan Rajkovic27-May-04 16:11 
GeneralWeb Image in Windows App. Pin
Nick Seng23-May-04 18:29
Nick Seng23-May-04 18:29 
GeneralRe: Web Image in Windows App. Pin
Aryadip24-May-04 0:45
Aryadip24-May-04 0:45 
GeneralRe: Web Image in Windows App. Pin
Nick Seng24-May-04 0:48
Nick Seng24-May-04 0:48 
GeneralRe: Web Image in Windows App. Pin
Heath Stewart24-May-04 3:59
protectorHeath Stewart24-May-04 3:59 
GeneralRe: Web Image in Windows App. Pin
Nick Seng24-May-04 5:27
Nick Seng24-May-04 5:27 
GeneralRe: Web Image in Windows App. Pin
Heath Stewart24-May-04 5:28
protectorHeath Stewart24-May-04 5:28 

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.