I need to simulate thru code the user clicking on a header of a WPF datagrid column (using .Net 4 in case it matters).

Is this possible?

link|improve this question

79% accept rate
what aspect of "simulate" are you after? the end-result or the UI? – bryanbcook Feb 22 at 19:49
Yes, that's what I want. I need the user to see the control at the first time as if it clicked one column. – SoMoS Feb 22 at 20:05
feedback

1 Answer

up vote 1 down vote accepted

I think you can use the AutomationPeer classes, which are designed for this sort of thing, specifically the DataGridColumnHeaderItemAutomationPeer Class.

 DataGridColumnHeaderItemAutomationPeer peer = new DataGridColumnHeaderItemAutomationPeer (Your_control);
 IInvokeProvider invoker= (IInvokeProvider)peer;
 invoker.Invoke(); // Invoke a click programmatically
link|improve this answer
If this works I'm gonna kiss you mate :D [Just kidding] – SoMoS Feb 22 at 19:09
There is no contructor with one parameter and the other requested parameters are not clear what they should be, never saw the Automation namespace and there is not much info available. Can you give me a hand? – SoMoS Feb 23 at 10:33
I had used the Button AutomationPeer class before it it worked great. When I browsed the namespace on MSDN and saw there were several dedicated to the DataGrid, I assumed they would work as well. I think your best bet is to just study the documentation more closely and google for some examples on how to use them, I can't give you the exact code because I haven't used these specific classes. – Bojin Li Feb 23 at 18:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.