Hi,
I currently have (in C# WPF) a listbox with each item containing controls, among them a button and a progressbar. Now what I want to do, is the following:
Button mybutton = (Button)sender;
I want to retrieve the progressbar that is in the same listboxitem as my sender button. How do I acces that control? Do I use the visualtreehelper?
Thanks in advance,