Questions tagged [user-control]
The user-control tag has no summary.
20 questions
2 votes
3 answers
184 views
Handling user strategy choice over many strategy patterns
I’m building a framework with many parallel implementations of strategy patterns, and I want to know the best way to handle the user’s choice of the set of strategies. E.g. I want to calculate the ...
2 votes
1 answer
243 views
Access control to Django App running on private server
I am a self-learning programmer (with a fair share of python knowledge), and currently a company asked to develop a simple application so that they can track employee expenses (and I thought of using ...
8 votes
4 answers
10k views
User registration flow in microservices
Let's say I have multiple microservices like authorization service (OAuth2 with JWT), VideoService and MyApplicationService. The VideoService provides videos for MyApplicationService. Both services ...
11 votes
3 answers
12k views
Is it good practice to use user controls to structure WPF forms even if these user controls are only used once?
I develop a WPF application using MVVM and I am learning how to do things best. I have a WPF form with selectors, two list with search fields, and some other elements. Currently all is in one form ...
2 votes
2 answers
125 views
How can I provide a user edit-level control over currently hardcoded formulas?
Current Situation I maintain a website that has a simple form that users fill out with simple engineering data. They press Submit, and the PHP code takes over and does various basic arithmetic on ...
0 votes
1 answer
508 views
Replace use of ComboBox with user controls
In currently developing a project where I'm going to use a lot of combobox, in order to avoid repeating a lot of code I'm planning on building a user control containing a ComboBox that retrieve the ...
0 votes
1 answer
403 views
When to build User Controls in ASP.NET
I am inheriting a legacy code. The legacy code has lot of web forms and each web form does not have much of functionality other than hosting a user control. My question is - Should we create a user ...
-1 votes
2 answers
499 views
Access functions from user control without events?
On some generic functions, it seems that accessing a function on mainform directly from the usercontrol is easier than raising an event. For example: A function on main form that displays one desired ...