2
votes
2answers
23 views
C# typed <T> usercontrol in design mode gives error
I've got a custom class, which derives from UserControl.
The code:
public partial class Gallery<T> : UserControl where T : class, IElement, new()
This classworks like it's supposed to work. …
0
votes
2answers
56 views
How can I refresh a custom wpf user control from code behind?
I have this custom wpf user control:
ShowCustomer.xaml:
<UserControl x:Class="TestControlUpdate2343.Controls.ShowCustomer"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
…
1
vote
6answers
49 views
Cannot see named Silverlight control in code
In my first few hours with Silverlight 3, as an avid WPF user, I am greatly disappointed at the many things it doesn't support. This seems like an odd issue to me and it's so generic that I cannot …
1
vote
1answer
24 views
Silverlight: Add same UserControl to more than one Canvas
I have a bunch of UserControls ('MyUserControl') that I want to have a user manually add to one or more Canvases. One instance of a UserControl cannot be a child element of more than one container …
1
vote
5answers
121 views
Too much control is bad. But when?
I remember reading a law (well, maybe not exactly a law), but in software design, providing user with a lot of control without really giving him an option of a Basic and an Advanced Mode will …
1
vote
1answer
38 views
WPF control design guidance - timeline
I'm working on a control for one of our apps. The control shows the currently focused day as a gird, the X-axis being time of day. The Y axis doesn't have a scale as such, rather it will separate …
1
vote
1answer
32 views
How to control usercontrol from javascript
I have an usercontrol with an attribute targetUrl. I add this user control to a page and write targetUrl attribute from this page like below:
<PBG:Modal ID="Modal1"
runat="server"
…
0
votes
1answer
25 views
Events from UserControl as ItemTemplate in WPF ListBox
In WPF, I have a ListBox with a UserControl as its ItemTemplate - all data shown ok. I have now added a text box for input in that user control. In an MVVM design, I want to take some action …
1
vote
1answer
28 views
Silverlight - User Control Binding
Hello,
I am learning Silverlight. In the process, I'm trying to build a custom user control. My ultimate goal is to be able to write the following statement in XAML:
<my:CustomControl>
…
2
votes
7answers
188 views
C# UserControl constructor with parameters
Call me crazy, but I'm the type of guy that likes constructors with parameters (if needed), as opposed to a constructor with no parameters followed by setting properties. My thought process: if the …
1
vote
3answers
81 views
WPF, UserControl or DataTemplate
Hi,
Recently I'm trying to reuse some UI elements in my application. When I started programming with WPF I'm told that DataTemplate is the best way to reuse UI elements. You can define a template for …
0
votes
2answers
25 views
Accessing user controls’s constituent controls from a hosting web page
Hi
I’ve read that user control’s constituent controls can be accessed only by user control and thus web page that hosts this user control cannot receive the events, call methods or set properties …
0
votes
1answer
30 views
Is there any way on how we could detect and get the attributes (which do not have properties) from a user control tag?
<uc1:UsercontrolTest ID="UsercontrolTest" runat="server" Hello="World"/>
You see, Hello is not a property of UsercontrolTest class, but we need to detect and get that attribute. Are we allowed …
0
votes
2answers
29 views
Silverlight UserControl Binding
Hi
I have a simple User Control
Xaml:
<UserControl x:Class="GraemeGorman_Controls.Navigation.NavigationItem"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
…
0
votes
1answer
33 views
WPF design UserControl / DataTemplate problem
Hi! I have a question.
I have a WPF UserControl representing a Person with many fields.
Some Persons can be a company. In this case I'd like to use another template with other fields. The code behind …
