Create Custom Control With Reusable Properties?
Nov 14, 2009
This is similar to my last post but with a different purpose.I have built a custom control, but when I set the properties for it... ALL instances of that control on my page grab the exact same property. I need to be able to set the property to "abc" for one instance of the control on my page, and then set the exact same proprty to "xyz" for a different instance of the control on the same page.
[Code]...
View 1 Replies
ADVERTISEMENT
Nov 13, 2009
I have built a Custom Control Class that makes it much easier to build a side bar element in my html.
The problem I am running into is that when I set the "Text" property, the last time I set it gets used for every instance of the control on my page. This is my first time doing this, so I'm assuming I'm missing something basic.
[Code]...
View 1 Replies
Nov 25, 2009
What I've done is create a User Control Library (Project) and I've added a single User Control to that project. The control contains a single FlowLayoutPanel, and I created a Property on the control itself to pass the FlowDirection from the Control to its FlowLayoutPanel child.
Build, reference, component appears in the Toolbox and everything works fine, but the property on the control does not appear in the Properties window when I go to edit it at design time.
View 6 Replies
Apr 16, 2009
In our IDE, for example, Visual Studio, if we display the properties of a System.Windows.Forms.Button control, we see some properties that expose anoter set of properties. For example: FlatAppearance, Font, Location, Margin, etcetera.I would like to do something similar in a custom control.I know the code behind is wrong, but here is an example of what I´m trying to do:
Public Class StateOfMyCustomControl
Public Enum EnumVisibility
Visible
[code]....
In my IDE, in the properties window of my custom control, I would like to see my property State, with the possibility of display it to set the properties Visibility and EventManagement.
View 1 Replies
Apr 10, 2012
I want to do a class that have properties like font, which will have other properties, such as name, size, unit,bold.
<TypeConverter(GetType(ExpandableObjectConverter))> _
Class TestingClass
'Some property here
End Class
View 1 Replies
Mar 21, 2010
Is it possible to make a form that can set the properties on a custom control in the designer? What I mean is I want to know if it is possible to show a dialog that allows you to set the settings for a certain property like if you were adding items to a listbox.
View 3 Replies
Mar 16, 2010
I have a custom list control, using labels to display content.How can I add a list property to the control so I can inject items into the custom listbox?I know how to make properties for strings etc. but I can't get it to work to make a list property...
View 1 Replies
Mar 6, 2012
I have a custom VB.NET control that I created that is working correctly in one program but not in another.The control has one button and one form. The form displays some data based on the settings in the control.
[Code]...
In TestProject1 - the control is working as expected In TestProject2 - the control is not sending any of the settings I set to the form My control works fine when I debug with the UserControl TestContainer.
I am using VB.NET on VS2005. This is all done on the same machine. Why would this work in one project and not another?
View 1 Replies
Aug 12, 2010
I have a custom control and have created some properties for it.When I click on that control, its properties are then shown in the PropertyGrid.The problem, is that I only want to show some of the predefined properties as well as my custom properties.Does anyone know how I can filter out the properties I want shown?
View 9 Replies
Dec 29, 2011
how to specify a custom icon for display in the toolbox window when you create your own custom control? Something other than the dreaded "gearbox" icon.
View 2 Replies
Jun 22, 2011
Is there a way to not put the project name in the Inherits attribute?
I am working with vb and I have multiple projects, that have multiple web pages. In each of these projects I create controls that are reused in the web pages.
Each control I have is declared like this:
<%@ Control Language="vb" AutoEventWireup="false" CodeBehind="MenuBarControl.ascx.vb" Inherits="**projectName**.MenuBarControl" TargetSchema="http://schemas.microsoft.com/intellisense/ie5" %>
When I want to copy the control into another project I have to change the **projectName**. Having to change the project name for each project makes the code not reusable. Changes made to specific projects each time is not reusable.
I want to be able to omit the project name in the Inherits attribute. When I do that now I get an error
Parser Error
Parser Error Message: Could not load type 'MenuBarControl'.
View 2 Replies
Aug 15, 2011
Asking for little guidance again... For my custom control, I grouped some properties in some class. Then in the main control code, I use:
[Code]...
View 7 Replies
Oct 15, 2011
I've created a user control with a simple text box and a corresponding label and added a few custom control properties. When added to a form, I'm trying to loop through all control of this type and evaluate the custom property. In the below, the cntl.MyCustomProperty is not recognized. I can evaluate the property when I check each user control on the form by name, but not by using the loop below. I would much rather use the loop as it is much cleaner.
For Each cntl As Control In Me.Controls
If (TypeOf cntl Is MyUserControl) And cntl.MyCustomProperty = "ABC" Then
''Do some stuff
End If
Next
View 2 Replies
May 14, 2011
I have a custom control defined in code-behind:
Public Class MyControl
Inherits Button
Private _A As String
[Code]......
What code I have to write to bind to those properies?
View 1 Replies
May 23, 2011
I need a coding for keypressevent in particular properties from the property grid.
It is possible to create an event for these(PropertyGrid Properties) properties?
(or)
How to create custom events for custom properties?
View 1 Replies
May 13, 2009
I've created a Custom Control, and I will be placing a large number of instances of that Custom Control on my xaml page. In working with that Custom Control in the VB Code Behind, how do I do the following?
How do I reference the name of the Custom Control (in my VB code) which was clicked with the MouseLeftButtonDown event? For example, if I have 10 instances of my Custom Control in xaml, each with a different x:name (say 1-10), when a particular instance is clicked, how can I see which one was clicked? I've tried a number of things including e.OriginalSource.Name (which returns the component within the control which was clicked and not the name of the instance of the control). My Custom Control consists of numerous parts and pieces (Rectangles, Lines, Text, etc). Each of these items is a part of my layer. In VB code, once I can reference a particular Control, how can I hide or change certain parts of that control (such as hiding a Line, and changing the text). Also, I need to modify more than just the control which was clicked, so I need to be able to access properties of all of the controls, not just what was clicked. For example, if I click Control instance Test1, I also need to modify Test2, Test3, and Test5 in some way.
Here is some test code I through together as part of a Silverlight project using MS Blend 2. My control is much larger, and I need 200 - 250 instances/copies of that custom control, so I really need to know which control instance/copy was clicked.
My UserControl:
<UserControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
[Code].....
View 1 Replies
Apr 4, 2011
I can load a generic user control just fine in my WCF service doing the following:
UserControl userControl= (UserControl) new Page().LoadControl("~/UserControls/MyControl.ascx");
However i can't seem to find any way to do this
[code].....
View 2 Replies
Jan 5, 2010
I want to create a reusable user control which contains a date time picker in asp.net. Need to add this user control in a grid view as column.While clicking the column,date time picker has to be displayed.Which is the suitable method,Creating the component or creating the user control.Also want to know,How to add this component in to the toolbox?
View 2 Replies
Apr 26, 2012
[code]I want to make the Properties Window to update the properties for X and Y at each MouseMove, so they become immediately visible for the user.
View 2 Replies
Sep 28, 2007
I am new in .net framework 2.0. I have to create a custom control. How to create it?
View 7 Replies
Apr 11, 2012
I was looking for a tutorial and i find this
[URL]
but it does not give the sample code for creating a user control with properties, events, methods
complete to create windows user control? that includes creating properties, events, methods? and if it has how to create web user controls better
View 1 Replies
Jun 5, 2011
I've saw many many times lots of custom controls, so I decided to build mine.
what do I need do to do to build a custom listbox control?
View 4 Replies
Feb 24, 2009
I have been asked to build a custom wizard control in VB.NET for a windows forms project. It has been made very clear to me that I am not "allowed" to utilize existing wizard controls on the internet due to some obscure logic surrounding copyrights. It has also been made clear to me that we are not "allowed" to use usercontrols in the software.
View 3 Replies
Oct 21, 2009
I've populated a PropertyGrid with a custom class. How do you create and display a sub property similar to Size (Height, Width) which has two values or Point(X,Y)? For example, the class is Test and the property is Item as string. I want to expand Item to have two sub properties, A and B.
View 1 Replies
Sep 10, 2006
I was trying to create a custom currency control text box, but I am getting an error that I don't understand.I am getting the following error message when I use it with databinding:"Object of type 'System.EventHandler' cannot be converted to type
[Code]...
View 3 Replies
Jul 1, 2010
I know that you can create custom formats for the DateTimePicker control, and I've googled this but is there any way that you can allow a user to only select Sunday dates in a Month with this control?
View 11 Replies
Dec 27, 2008
I'm trying to create a simple transparent PANEL control. I want to create a custom control based on the existing Panel Control with a property added called "transparent" which can be set to true or false. If it's set to true it's transparent(not invisible). So if I place it over some controls in a form say a button or text box... they are visible but disabled.
View 2 Replies
Jun 8, 2011
I need to create a new DateTimePicker control supporting the Hijri and Hebrew calendars
I tried the DateTimePicker on "windows server 2008" and it was working very fine without any code change for Hijri and Hebrew calendars but on "windows XP" it works only with Grgorian calendarso i need to create a new DateTimePicker that implements the following calendarssystem.globalization.hijricalendar and system.globalization.hebrewcalenda
View 2 Replies
Oct 15, 2009
How to create custom events for contol. i have created a user control mytextbox & i am showing some properties of textbox & now i want to expose user control events
I am showing Following properties to user
CODE:
How to expose Events
View 3 Replies
Jan 6, 2010
I have previously used the arguments of a contentsResized event on a Winforms richtextbox to get the new size of my RTB. I am now developing a WinForms app with a custom WPF RichTextBox. My whole reason for doing this is to use the out-of-the-box spellchecker. I need my RichTextBox to expand and collapse vertically as the text is changed. The elementhost will also have to resize to allow the whole RTB to display on-screen.
View 1 Replies