Click here to Skip to main content
15,887,746 members
Home / Discussions / C#
   

C#

 
AnswerRe: JavaScript functions calling C# functions and Viceversa Pin
Dave Kreskowiak23-Nov-13 4:54
mveDave Kreskowiak23-Nov-13 4:54 
GeneralRe: JavaScript functions calling C# functions and Viceversa Pin
Don Guy23-Nov-13 5:55
Don Guy23-Nov-13 5:55 
GeneralRe: JavaScript functions calling C# functions and Viceversa Pin
Dave Kreskowiak23-Nov-13 7:13
mveDave Kreskowiak23-Nov-13 7:13 
AnswerRe: JavaScript functions calling C# functions and Viceversa Pin
jschell23-Nov-13 11:08
jschell23-Nov-13 11:08 
AnswerRe: JavaScript functions calling C# functions and Viceversa Pin
Elaine0023-Nov-13 22:17
Elaine0023-Nov-13 22:17 
GeneralRe: JavaScript functions calling C# functions and Viceversa Pin
Dave Kreskowiak25-Nov-13 2:23
mveDave Kreskowiak25-Nov-13 2:23 
QuestionTap not working Pin
Member 1037988622-Nov-13 8:57
Member 1037988622-Nov-13 8:57 
AnswerRe: Tap not working Pin
TnTinMn23-Nov-13 11:31
TnTinMn23-Nov-13 11:31 
Your event handler signature looks wrong. They should look something like this:
C#
private void button1_Click(object sender, RoutedEventArgs e)
{
    MessageBox.Show("button click");
}

private void ContentPanel_Tap(object sender, GestureEventArgs e)
{
    MessageBox.Show("tap");
}

Have you wired up the handlers somewhere? You can do this in the designer's property grid by selecting the Events tab. Double-Click on an event name and it will create the code stub for you.
Questionhelp on shooping cart detect <Profile> at config Pin
MichaelCheong8922-Nov-13 1:35
MichaelCheong8922-Nov-13 1:35 
AnswerRe: help on shooping cart detect <Profile> at config Pin
Dave Kreskowiak22-Nov-13 1:40
mveDave Kreskowiak22-Nov-13 1:40 
GeneralRe: help on shooping cart detect <Profile> at config Pin
MichaelCheong8922-Nov-13 1:49
MichaelCheong8922-Nov-13 1:49 
GeneralRe: help on shooping cart detect <Profile> at config Pin
Dave Kreskowiak22-Nov-13 2:29
mveDave Kreskowiak22-Nov-13 2:29 
AnswerRe: help on shooping cart detect <Profile> at config Pin
OriginalGriff22-Nov-13 6:04
mveOriginalGriff22-Nov-13 6:04 
AnswerRe: help on shooping cart detect <Profile> at config Pin
MichaelCheong8922-Nov-13 7:14
MichaelCheong8922-Nov-13 7:14 
QuestionCentral Windows Application Authentication Pin
Zeyad Jalil22-Nov-13 1:00
professionalZeyad Jalil22-Nov-13 1:00 
AnswerRe: Central Windows Application Authentication Pin
Pete O'Hanlon22-Nov-13 1:11
mvePete O'Hanlon22-Nov-13 1:11 
GeneralRe: Central Windows Application Authentication Pin
Zeyad Jalil22-Nov-13 1:15
professionalZeyad Jalil22-Nov-13 1:15 
GeneralRe: Central Windows Application Authentication Pin
Pete O'Hanlon22-Nov-13 1:16
mvePete O'Hanlon22-Nov-13 1:16 
AnswerRe: Central Windows Application Authentication Pin
WuRunZhe22-Nov-13 3:00
WuRunZhe22-Nov-13 3:00 
GeneralRe: Central Windows Application Authentication Pin
Zeyad Jalil22-Nov-13 4:26
professionalZeyad Jalil22-Nov-13 4:26 
AnswerRe: Central Windows Application Authentication Pin
Dave Kreskowiak22-Nov-13 6:18
mveDave Kreskowiak22-Nov-13 6:18 
GeneralRe: Central Windows Application Authentication Pin
Eddy Vluggen22-Nov-13 7:05
professionalEddy Vluggen22-Nov-13 7:05 
GeneralRe: Central Windows Application Authentication Pin
Dave Kreskowiak22-Nov-13 12:38
mveDave Kreskowiak22-Nov-13 12:38 
QuestionNeed help with creating a cube mesh in Unity3D C# Pin
begginerc221-Nov-13 18:21
begginerc221-Nov-13 18:21 
SuggestionRe: Need help with creating a cube mesh in Unity3D C# Pin
Richard MacCutchan21-Nov-13 22:05
mveRichard MacCutchan21-Nov-13 22:05 

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.