python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to add UserControl to ListView on Windows Forms?
I'm trying to make it so, for each item on a List<> , a usercontrol gets inserted into a ListView.
I tried doing the following but it didn't work:
foreach (var item in MyList)
{
...
user18647657
Votes: 0
Answers: 1
Usercontrol in windows Form closed when my BackgroundWorker is running
I made a form with 3 usercontrols and display it with button.
In 2 of them I got a form for make a backup SQL and a restore.
For the backup my usercontrol get closed after the back is complete.
For th...
oueckila
Votes: 0
Answers: 1
UserControl DependencyProperty Value always 0 when bound to ViewModel Property
I have a simple UserControl with 3 Dependency Properties. Day, Month and Year.
public static readonly DependencyProperty DayProperty = DependencyProperty.Register("Day", typeof(int), typeof(...
SevenSins
Votes: 0
Answers: 1
User control design time property not showing in properties window
I have a UserControl with a custom property:
public Size TestSize { get; set; }
I would like this property to show up in the properties window during design time of the UserControl, and not only wher...
JohnSaps
Votes: 0
Answers: 1