0
votes
3answers
26 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 …
0
votes
2answers
78 views
+100
Web Application Project @Reference tag
I am converting a web site project to a web application project in VS 2008 and i've run across a query regarding dynamically loading user controls.
<%@ Reference …
0
votes
0answers
10 views
Running a WPF User control or Managed Directx control on JFrame
If I have developed a user control as mentioned in the tile and I use this http://www.ikvm.net/ to convert my .dll to a Jar file, Can I then embed that control on my JFrame? If so can you give an …
1
vote
5answers
39 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 …
0
votes
1answer
19 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
22 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
6answers
1k views
WPF - Can’t set focus to a child of UserControl
I have a UserControl which contains a TextBox. When my main window loads I want to set the focus to this textbox so I added Focusable="True" GotFocus="UC_GotFocus" to the UserControls definition and …
0
votes
1answer
25 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 …
1
vote
2answers
355 views
System.IO.FileNotFoundException exception when attempting to drop UserControl on Form in designer
I have created a custom UserControl in Managed C++ that wraps some native code controls. I have confirmed the control works at runtime, and have been trying to make the control work with the Visual …
2
votes
2answers
868 views
How to Raise Events from VB.Net ClassLibrary/UserControl (ActiveX) to JavaScript?
I've created a VB.Net ClassLibrary with a UserControl in it. I can load it from an HTML page and call the methods that I created. This works as expected. I've tried several examples for how to raise …
0
votes
4answers
157 views
JQuery in ASP.Net User Control in C#
I'm having problems using JQuery inside an ASP.Net User Control I've created a sample and here is the markup for my user control:
<%@ Control Language="C#" ClassName="UC" AutoEventWireup="true"
…
0
votes
2answers
20 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
48 views
Why do I get a XamlParseException when I inherit a Custom UserControl in another project?
In one project I have an Editor Class:
namespace TestXamlInherit234
{
public class CustomerEditor : BaseEditor
{
public CustomerEditor()
{
TheMessage.Text = …
0
votes
0answers
14 views
Can I create a asp.net webform -or user control- output from an XML file by using XSLT?
Hi,
Basically the thing I would like to achieve is to produce a form with some check boxes which will have their texts, default values from an xml file. As an example the block below should result 3 …
1
vote
3answers
52 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 …
