Hey there i wondered how it is possible to add a ListBoxItem with a fully working Progressbar to a ListBox.
The Situation is:
I got a ListBox used as a Actionlog, i have a downloadfunction in the program and when i start downloading it appears in the log.
Now i wanted to Add a Progressbar to the Log which shows the downloadprogress.
I tried it by myself but not very successfully:
ListBoxItem lbitem = new ListBoxItem();
ProgressBar pb1 = new ProgressBar();
pb1.Width = 100;
pb1.Height = 20;
lbitem.Content = "Downloading file - " + pb1;
listbox1.Items.Add(lbitem);
But maybe this give you an idea what i'm actually trying to do.
I hope someone can help me out with this,
regards,
Jake