blah blah blah is here! blah blah » Close

1
votes
1 answers

how to put delegate into template form?

Hi all, have small question i have created baseForm that is inherited within all my application except login and main form. I want to add delegate into the base form so all form can inherit the function such as: In MDI container ...

1
votes
1 answers

C# delegate use

Hi, I got this code sample for thread starting from MSDN - [code] void StartThread() { System.Threading.Thread t1 = new System.Threading.Thread (delegate() { System.Console.Write("Hell ...

0
votes
2 answers

WPF capturing an click event in a child control

betpet
223

I'm building an app in WPF and have a main window, in the window I have a frame with a page inside it. On the page is a button. I have instantiated the page inside the application and am trying to create an event where I can capture the c ...

Feedback