Click here to Skip to main content
15,887,596 members
Home / Discussions / WPF
   

WPF

 
GeneralMessage Removed Pin
11-May-09 9:19
professionalN_tro_P11-May-09 9:19 
GeneralRe: Custom Made Button Click event Pin
Mark Salsbery11-May-09 14:26
Mark Salsbery11-May-09 14:26 
QuestionMessage Removed Pin
12-May-09 3:39
professionalN_tro_P12-May-09 3:39 
AnswerRe: Custom Made Button Click event Pin
Mark Salsbery12-May-09 6:48
Mark Salsbery12-May-09 6:48 
GeneralMessage Removed Pin
12-May-09 7:55
professionalN_tro_P12-May-09 7:55 
GeneralRe: Custom Made Button Click event Pin
Mark Salsbery12-May-09 8:14
Mark Salsbery12-May-09 8:14 
GeneralMessage Removed Pin
12-May-09 8:24
professionalN_tro_P12-May-09 8:24 
GeneralRe: Custom Made Button Click event Pin
Mark Salsbery12-May-09 9:14
Mark Salsbery12-May-09 9:14 
You must not be putting the code-behind in the right class,
or not putting the right class and/or namespace in the XAML.

Your namespaces and class names certainly don't match up in the XAML you posted.

Look closely at your code for the following highlighted (red) items:
<!-- UserControl1.xaml -->

<UserControl x:Class="<code>MyNamespace.UserControl1</code>"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:MyControlsWPF="clr-namespace:<code>MyControlsWPF</code>"
    Width="100" Height="100" >
    <Grid>
        <code><!-- Here's your instantiation of a custom button! --></code>
        <MyControlsWPF:MyButton x:Name="myCustomButton" Click="myCustomButton_Click" />
    </Grid>
</UserControl>

// UserControl1.xaml.cs

using System;
using System.Windows;
using System.Windows.Controls;

namespace <code>MyNamespace</code>
{
    /// <summary>
    /// Interaction logic for UserControl1.xaml
    /// </summary>
    public partial class <code>UserControl1</code> : UserControl
    {
        public UserControl1()
        {
            InitializeComponent();
        }

        private void myCustomButton_Click(object sender, RoutedEventArgs e)
        {
        }
    }
}


Mark Salsbery
Microsoft MVP - Visual C++

Java | [Coffee]

GeneralMessage Removed Pin
12-May-09 9:19
professionalN_tro_P12-May-09 9:19 
GeneralRe: Custom Made Button Click event Pin
Mark Salsbery12-May-09 9:37
Mark Salsbery12-May-09 9:37 
GeneralMessage Removed Pin
12-May-09 9:48
professionalN_tro_P12-May-09 9:48 
GeneralRe: Custom Made Button Click event Pin
Mark Salsbery12-May-09 10:20
Mark Salsbery12-May-09 10:20 
QuestionObservableCollection Pin
RugbyLeague11-May-09 3:18
RugbyLeague11-May-09 3:18 
AnswerRe: ObservableCollection Pin
Pete O'Hanlon11-May-09 4:03
mvePete O'Hanlon11-May-09 4:03 
GeneralRe: ObservableCollection Pin
mark_w_11-May-09 4:18
mark_w_11-May-09 4:18 
GeneralRe: ObservableCollection Pin
Pete O'Hanlon11-May-09 4:26
mvePete O'Hanlon11-May-09 4:26 
GeneralRe: ObservableCollection Pin
mark_w_11-May-09 4:41
mark_w_11-May-09 4:41 
GeneralRe: ObservableCollection [modified] Pin
RugbyLeague11-May-09 5:02
RugbyLeague11-May-09 5:02 
AnswerRe: ObservableCollection Pin
Niladri_Biswas13-Jun-09 4:09
Niladri_Biswas13-Jun-09 4:09 
QuestionWPF - Namespaces Pin
mark_w_11-May-09 0:18
mark_w_11-May-09 0:18 
AnswerRe: WPF - Namespaces Pin
mark_w_11-May-09 5:33
mark_w_11-May-09 5:33 
AnswerRe: WPF - Namespaces Pin
Niladri_Biswas13-Jun-09 4:13
Niladri_Biswas13-Jun-09 4:13 
QuestionWPF performance problems in planning application Pin
h_c_d10-May-09 23:39
h_c_d10-May-09 23:39 
QuestionSize of a custom shape (DesiredSize) Pin
Pauwels Bart10-May-09 18:15
Pauwels Bart10-May-09 18:15 
AnswerRe: Size of a custom shape (DesiredSize) Pin
Pauwels Bart13-May-09 1:21
Pauwels Bart13-May-09 1:21 

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.