0
votes
0answers
7 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 …
0
votes
1answer
15 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
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 …
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>
…
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 …
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 …
0
votes
2answers
28 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
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
42 views
Why don’t Asp.Net controls expose the same events as…?
Hi
User control receives same events as Page object and just like Page object also exposes Application, Session, Request and Response objects. I realize UserControl class and Page class both inherit …
0
votes
1answer
23 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 …
0
votes
1answer
22 views
How do I animate UserControl objects using Storyboard and DoubleAnimation?
In my WPF application, I have a Canvas object that contains some UserControl objects.
I wish to animate the UserControl objects within the Canvas using DoubleAnimation so that they go from the right …
2
votes
7answers
157 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 …
0
votes
2answers
25 views
WPF - How to expose subelements of a UserControl
I have created a XAML UserControl that is used to enter the current date using some up/down controls. The interesting parts of the UserControl are as follows:
<UserControl …
0
votes
1answer
32 views
User controls called from child pages do not appear on master page.
Hey,
I have a custom user control in ASP.net:
MenuButton.ascx:
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="~/MenuButton.ascx.cs" Inherits="MenuButton" ClassName="MenuButton" %>
…
