Click here to Skip to main content
15,889,116 members
Home / Discussions / C#
   

C#

 
GeneralRe: Accessing the file of a T-SQL BACKUP call Pin
Uwe Keim2-Aug-09 19:15
sitebuilderUwe Keim2-Aug-09 19:15 
Questionnotify icon Pin
Vivek Vijayan2-Aug-09 2:18
Vivek Vijayan2-Aug-09 2:18 
AnswerRe: notify icon Pin
Manas Bhardwaj2-Aug-09 2:27
professionalManas Bhardwaj2-Aug-09 2:27 
GeneralRe: notify icon Pin
Abhijit Jana2-Aug-09 2:38
professionalAbhijit Jana2-Aug-09 2:38 
GeneralRe: notify icon Pin
Manas Bhardwaj2-Aug-09 2:39
professionalManas Bhardwaj2-Aug-09 2:39 
AnswerRe: notify icon Pin
CoderForEver2-Aug-09 8:06
CoderForEver2-Aug-09 8:06 
QuestionCustom user control Pin
Jon Henry2-Aug-09 1:45
Jon Henry2-Aug-09 1:45 
AnswerRe: Custom user control Pin
Super Lloyd2-Aug-09 2:38
Super Lloyd2-Aug-09 2:38 
From your description I have little clue what might be wrong...

So, just to give you some suggestion on how to do that, here is a very simple desktop application with 2 button:

Window1.xaml
<Window <br />
	x:Class="WpfApplication1.Window1"<br />
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"<br />
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"<br />
	Width="200" Height="100"<br />
    Title="Window1"><br />
	<StackPanel Orientation="Vertical"><br />
		<Button Click="DoClick1"> <Label>Label 001</Label><br />
		</Button><br />
		<Button Click="DoClick7"> <Label>Label 007</Label> </Button><br />
	</StackPanel><br />
</Window>

Window1.xaml.cs
public partial class Window1 : Window<br />
{<br />
	public Window1()<br />
	{<br />
		InitializeComponent();<br />
	}<br />
<br />
	private void DoClick1(object sender, RoutedEventArgs e)<br />
	{<br />
		Console.WriteLine("Click 1");<br />
	}<br />
<br />
	private void DoClick7(object sender, RoutedEventArgs e)<br />
	{<br />
		Console.WriteLine("Click 2");<br />
	}<br />
}<br />


A train station is where the train stops. A bus station is where the bus stops. On my desk, I have a work station....
_________________________________________________________
My programs never have bugs, they just develop random features.

GeneralRe: Custom user control Pin
Jon Henry2-Aug-09 2:46
Jon Henry2-Aug-09 2:46 
GeneralRe: Custom user control Pin
Super Lloyd2-Aug-09 2:54
Super Lloyd2-Aug-09 2:54 
GeneralRe: Custom user control Pin
Super Lloyd2-Aug-09 3:16
Super Lloyd2-Aug-09 3:16 
GeneralRe: Custom user control Pin
Jon Henry2-Aug-09 3:23
Jon Henry2-Aug-09 3:23 
GeneralRe: Custom user control Pin
Super Lloyd2-Aug-09 4:05
Super Lloyd2-Aug-09 4:05 
GeneralRe: Custom user control Pin
Jon Henry2-Aug-09 4:25
Jon Henry2-Aug-09 4:25 
QuestionLooking for a control Pin
reilak2-Aug-09 0:05
reilak2-Aug-09 0:05 
AnswerRe: Looking for a control Pin
0x3c02-Aug-09 0:43
0x3c02-Aug-09 0:43 
GeneralRe: Looking for a control Pin
reilak2-Aug-09 20:48
reilak2-Aug-09 20:48 
Generalanother way to work with this control? [modified] Pin
reilak2-Aug-09 23:00
reilak2-Aug-09 23:00 
GeneralRe: another way to work with this control? Pin
0x3c03-Aug-09 3:04
0x3c03-Aug-09 3:04 
QuestionWindow Coordinates?? Pin
Muammar©1-Aug-09 23:58
Muammar©1-Aug-09 23:58 
AnswerRe: Window Coordinates?? Pin
dan!sh 2-Aug-09 0:10
professional dan!sh 2-Aug-09 0:10 
GeneralRe: Window Coordinates?? Pin
Muammar©2-Aug-09 7:52
Muammar©2-Aug-09 7:52 
QuestionCall method in parent aspx page from user control Pin
Chazzysb1-Aug-09 23:04
Chazzysb1-Aug-09 23:04 
AnswerRe: Call method in parent aspx page from user control [ ASP.NET Question ] Pin
Abhijit Jana1-Aug-09 23:42
professionalAbhijit Jana1-Aug-09 23:42 
AnswerRe: Call method in parent aspx page from user control Pin
dan!sh 1-Aug-09 23:54
professional dan!sh 1-Aug-09 23:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.