0
votes
3answers
40 views
VB.NET Programmatically add code between tags
I have a custom control that does some work for me on async postbacks. Normally, I'd call the control directly from the presentation side using the following code on the ASPX page:
…
1
vote
2answers
20 views
Can I add buttons with events to a custom treeNode?
I extended treeview, treenode, and nodetype so I could have custom nodes. Certain nodes have image buttons on them allowing them to add a child node or delete the node. I can't handle any of the …
1
vote
1answer
9 views
Custom controls and the VS Toolbox
Hello.
I wonder what can be a cause for the non-apparition of custom/user controls in the Visual Studio Toolbar.
Thanks.
I have a solution with some projects and a lot of custom controls. …
3
votes
2answers
31 views
wpf how to tell when databinding has finished?
Hi,
I've got a custom control which has a DependencyProperty MyAnimal - I'm binding an Animal Property on my ViewModel to the MyAnimal DependencyProperty.
I've stuck a TextBox on the Control so I …
0
votes
2answers
31 views
Drawing text in a NSButton subclass - positioning
I Have a custom button:
And I need the text to be centered, here's my code:
NSMutableParagraphStyle *style =
[[NSParagraphStyle defaultParagraphStyle] mutableCopy];
[style …
0
votes
0answers
22 views
ASP.NET CompositeControl CreateChildControls() small problem
Helo!
I have a small problem with CreateChildControls() method.
I have a List of items, and each item will have a Button with Click event.
Items will be added in Page_Load event.
So for each item in …
1
vote
2answers
32 views
Custom Silverlight control assembly not found in XAML, but is definitely referenced
I recently added a control library project to my Silverlight app's solution, so the solution now has three projects:
SLClient
SLClient.Controls
SLClient.Web
SLClient has a project reference to …
0
votes
1answer
15 views
Accessing Template item in code behind a Silverlight control
I've created a custom control for use in my Silverlight application. Its template is defined in the control library's Generic.xaml. Is there any way to set properties of the items in that template …
0
votes
2answers
37 views
difference between component and custom user control
I am working on a project with some other developers and I notice that they created a custom component to create a readonly implementation of a combobox. But what is the difference between a …
0
votes
0answers
23 views
How to add more than one control to a custom control’s placeholder?
we have created a container custom control and this is how they were called in OnPreInit:
private void RenderModules() {
List<Modules> modules = GetModulesList();
foreach(var item in …
0
votes
1answer
24 views
Data bound child controls
Hello all,
I have been working on a custom control. It (programatically or at design time) has a property that specifies the manner of data displayed in my control's child controls.
For simplicity's …
0
votes
2answers
26 views
Instantiate a Windows Forms control in WPF without default constructor
I am trying to host a custom Windows Forms control in WPF. My custom control does not have a public constructor, and it has a static Create() method which looks something like this:
public abstract …
0
votes
2answers
43 views
Blackberry - Small Up Down Arrow Button
i want to create 2 buttons for blackberry which look like this...
and the second one inverted of the above
i wanted to do this without using images (for efficiency) and the buttons should appear …
0
votes
1answer
37 views
C# DataGridView Add uses ToString()?
I'm trying to create a custom DataGridViewButtonCell to download a file once clicked. That class works flawlessly, but will NOT add itself to the DataGridView when I use the rows.add() method. It …
0
votes
1answer
16 views
Flex component to select month and year only
is there a custom component that extends DateChooser that only has the month and year but not the date grid to select a specific day. All i need is the month and year not any specific day. if the …
