C# - Adding Delegate Or Event Property To Class?

Oct 4, 2010

I created a control where other developers can create an instance and use. There is a button click in the control. How do I allow developers to plug in their own code in a certain part of my control? I am not sure if or how exactly to use a delegate or event in this scenario.

[code].....

How to I update MyControl to allow this?

View 4 Replies


Similar Messages:

ADO.NET :: Adding Custom Property To A Data Class Using Linq?

Oct 9, 2010

I tried to add a custom property to the data model:

public partial class Department
{
public string ExtensionIdName
{
get
{
return Extension.ExtensionName;
}
set
{
}
}
}

It seems that it works, but when I bind the data to a ListView it shows all the properties except the property I added manualy (ExtensionIdName).

View 2 Replies

Expected Class, Delegate, Enum, Interface, Or Struct?

May 19, 2010

I am getting this build error on the following line of code, and do not find anyhting wrong there.

public partial class _Default : System.Web.UI.Page
{
}

[code]...

View 3 Replies

Web Forms :: Error In Form--expected Class, Delegate, Enum, Interface, Or Struct?

Aug 11, 2010

I am getting the same error (as this post: http://forums.asp.net/p/1346731/4020966.aspx) as expected class,delegate,enum,interface or struct and also type or namespace definition or end of file expected.Below is the code:

public
partial
class

[code]...

View 1 Replies

Gridview Event, No Overload Matches Delegate

Jan 27, 2011

<asp: GridView..... ID="MyGrid" AllowSorting = "True" OnSorting = "SortMyGrid">
protected void SortMyGrid(object sender, GridViewPageEventArgs e)
DataTable TheGridData = MyGrid.DataSource as DataTable;

And then when I run the codeNo overload for 'SortMyGrid' matches delegat

View 1 Replies

Web Forms :: Composite Control Loses Subscribed Event/delegate?

Jan 18, 2010

I have created a custom composite control basically with two checkboxes. I have created a subscribable event, and the consumer has subscribes to it. But when I go to excute it, the delegate reference is null. What am I missing and why is it losing its subscribed events?

[Code]....

I am using VS2008 SP1 targeting .Net 2/3.5SP1 web site.

View 2 Replies

C# - Assign Delegate Event Handler From Dynamically Added Child Control

Apr 14, 2010

I have a control that handles commenting. In this control, I have set a delegate event handler for sending an email.

I then have various types of controls, e.g. blog, articles etc, each of which may or may not have the commenting control added (which is done dynamically with me not knowing the id's), i.e. the commenting control is added outside this control. Each of these controls handles it's emailing differently(hence the event).

What I'm trying to determine, is how to assign the event in the parent control. At the moment, I'm having to recursively search through all the controls on the page until I find the comment control, and set it that way. Example below explains:

COMMENTING CONTROL

public delegate void Commenting_OnSendEmail();
public partial class Commenting : UserControl
{
public Commenting_OnSendEmail OnComment_SendEmail();
private void Page_Load(object sender, EventArgs e)
{
if(OnComment_SendEmail != null)
{
OnComment_SendEmail();
}
}
}

PARENT CONTROL

public partial class Blog : UserControl
{
private void Page_Load(object sender, EventArgs e)
{
Commenting comControl = (Commenting)this.FindControl<Commenting>(this);
if(comControl != null)
{
comCtrol.OnComment_SendEmail += new Commenting_OnSendMail(Blog_Comment_OnSendEmail);
}
}
}

EDIT:

The reason I ask is that if I search from this.Page as the initial control, I am worried about time taken to search down the control tree to find it. Each different type of page would be different in how many control it would have. On some testing, it returns back quite quickly the result.

View 1 Replies

Using Type.InvokeMember To Invoke A Property Of A Property Of A Class

May 21, 2010

Is it possible to use InvokeMember() of Type class to call a property of a property of a class?

[Code]....

View 1 Replies

Write Property In A Property IN The Page Load Event?

Sep 21, 2010

Can we write property in property?IN the page load event we have page property and we can find another page property in that page property.Pls let me know how this is happening

View 5 Replies

C# - How To Get Value Of Property Class

Mar 16, 2011

how to getValue of property class with this method?

public static int SQLInsert<TEntity>(TEntity obj) where TEntity : class
{
foreach (var item in obj.GetType().GetProperties())
{
//item.GetValue(?,null);
}
return 1;
}

View 3 Replies

C# - Adding Property To TreeNode?

Jul 8, 2010

I have a webpage that uses a Treeview. In the treeview are nodes and i use the Text and Value property, but i need one more. I need one boolean property called IsFile.

I make the Nodes and add them to the tree programmatically. I have a class Called NavTreeNodes that inherits the TreeNode class and ads this bool.

public class NavTreeNode : TreeNode
{
private bool _IsFile;
public bool IsFile
{
get { return _IsFile; }
set { _IsFile = value; }
}
public NavTreeNode()
{ }
}

And when i make a new TreeNode i use this class. Everything works until i try to get the data from the treeview in the SelectedNodeChanged on the TreeView function.

protected void treeview_Navigation_SelectedNodeChanged(object sender, EventArgs e)
{
TreeNode node = treeview_Navigation.SelectedNode;
NavTreeNode NNode = node as NavTreeNode;
Response.Write(NNode.IsFile.ToString());
}

I get a "Object reference not set to an instance of an object." error when i try this. I cant even get the Value or the Text value using this method.

View 2 Replies

How To Set Css Property Of One Class From Another Class

Jul 21, 2010

I am applying css style to "body" and to a div which id is "overlay" like:

body
{
margin:0;
[code]....

"overLay" div is inside noscript tag which renders in the browser only when javascript is disabled in the browser.My requirement is that I have to set "overflow:hidden" in the body when "overLay" div get rendered.

View 2 Replies

How To Get Value Of Property By Name Through Generics Of A Class

May 11, 2010

I have a class, let's say class Sample. Sample has unknown properties but inherits an interface ISample. Said interface includes one method which I'm trying to create. This interface has a method called getPropertyValue(object o, string PropertyName).

It returns the value of the o.PropertyName using generics (unless you have a better suggestion). How do I write it? In other words, I want to be able to pass the name (as a string) of a property and return its value. Samples in C# preferrable but VB ok and any comments or suggestions are welcome.

View 2 Replies

C# - Sort List Of Class Using Id Property

Oct 8, 2010

I have a class called Questions. This Questions has properties QuestionID and QuestionAnswer. My list of Questions has QuestionID like 2,3,4,15,12,24,22,,,, etc I need to sort this List of Questions Object based on QuestionID and store in another Questions object.

View 2 Replies

WCF / ASMX :: How To Access The Property Class

Oct 29, 2010

Actaully i am careted one webservice name:service1,created one more class name: service2 this poperty class for webservice,My question is

1.How to access that property class in client side?

2.It's possible to create Layer archt. Inside the webservice?

View 4 Replies

WCF / ASMX :: Property In Service Class

Jan 18, 2011

If i want to use Property & Method in same class then how to use it. I want to keep separate class only for interface , not for property.
Also we have tried with [OperationContract] before get ,set in Service class . it solved our issue but throws error while run a .svc file

View 1 Replies

HttpContext Class And Response Property?

Feb 21, 2011

I have question about HttpContext class (http://msdn.microsoft.com/en-us/library/system.web.httpcontext.aspx). This class has Responseproperty (http://msdn.microsoft.com/en-us/library/system.web.httpcontext.response.aspx). But I don't understand, why Response property hasHttpResponse return value, not HttpContext (this is HttpContext, not HttpResponse property).So, why there is:

[Code]....

not

[Code]....

View 3 Replies

Adding New Meta Tags With Property And Content?

Sep 23, 2010

I programatically add meta tags to the head of each page using htmlhead, specifying the name and content. I now need to add new meta tags with property and content.

View 1 Replies

C# - Adding A Custom Property To Entity Framework?

Oct 19, 2010

I am using the Entity Framework for the first time and want to know if the following is possible - I have generated my classes from the DB, and have one called Category.

Obviously it has all my fields in the table (ID, CategoryName, SortOrder etc..) but I want to know if I can add a custom property which is not in the table, but is actually the result of a custom method.

I want to add a new property called 'CategoryURL' which is basically the 'CategoryName' property run through a custom method and returns a hyphenated string.

My initial thought is inheriting from the generated Category class and creating something like this inside?

public string CategoryURL
{
get{ return MyCustomMethod(this.CategoryName) }
}

Is this the correct approach? And will 'this.CategoryName' work as I think it should? Basically the end result is when I return a list of 'Category' I want this to be part of the class so I can use it in my foreach loop.

View 1 Replies

Web Forms :: Class Cannot Be Indexed Because It Has No Default Property?

Dec 6, 2010

What am I doing wrong here?

Me("Label" & CStr(i)).Text = strURI.Substring(strURI.ToString().LastIndexOf("/") + 1) & ": " & intCount.ToString()

[Code]....

I get an error on Me; it indicates that it cannot be indexed because it has no default property

View 5 Replies

ADO.NET :: Retrieving Bit Colum With Sqldatareader For Vb Class Property?

Oct 3, 2010

I have a vb class that reads a single row of data from an SQL view. I want to add a property to it that will expose the value of a new bit field. But whatever I do my class always returns the value "false".What am I doing wrong?

Public ReadOnly Property IsPublished() As Boolean
Get
Return valPublished
End Get
End Property

Here's the relevant line from my datareader: Me.valPublished = Convert.ToBoolean(theObjectReader("Authorised"))Authorised is my bit field. I have tried it with and without the "ConvertToBoolean" statement.When I response write the value of the property for rows where this field is true, it always shows false.

View 4 Replies

Class Property Not Returning Right Datetime Format?

Feb 21, 2011

Why doesn´t this property return a datetime formated with the following pattern when using the property in the codebehind page in my ASP.NET Webforms website? When debugging i can see that the value the returning datetime is "2011-02-21 16:13:29.670" wich is correct.

[code]....

And after assigning the returned property value to a hiddenfield in the .aspx page i get this value assign to the hiddenfield.value "2011-02-21 16:13:29"

hdnUserLastUpdated.Value = objUser.UserLastUpdated

View 1 Replies

Web Forms :: Assign A Property Of An Custom Class Between C # And VB

Sep 13, 2010

I have a custom class downloaded from internet. In this class, there is a properties where by the value can be either 0, 1 or 2 only and I MUST assign it during run-time. But some how, this assignment only work using VB, and not C#.

[Code]....

In C#, it the compiler said "missing cast or conversion...". But in VB, it works perfectly.

View 12 Replies

Web Forms :: Adding Sub-Properties Into Property Sheet Of A New Web-Control?

May 5, 2010

I'm having difficulties with adding sub-properties into Property sheet.

for example:

let's say I've created a web-control with a textbox in it. I can add to my web-control a new property such as:

public TextBox MyTextBox
{
get
{
return m_TextBox;
}
set
{
m_TextBox = value;
}
}

and this will be enough for me to add the TextBox into the property sheet of the web control each time i use this web-control.

My problem is with adding the TextBox properties into the property sheet with the sign "+" next to the "MyTextBox" property.

I'm using VS2008 if it's make the difference.

View 2 Replies

Web Forms :: Adding Drop Down List To Webpart Property?

Feb 18, 2010

I have a webpart which contains a dropdownlist in the Webpaart property and its working fine. The code is below.

public enum ItemCount
{
One = 1,
Five = 5,
Ten = 10

[Code]....

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved