Click here to Skip to main content
15,898,373 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: internationalization of silverlight applications Pin
Mark Salsbery28-Apr-09 5:40
Mark Salsbery28-Apr-09 5:40 
QuestionProblem with silverlight Pin
sureshreddy178927-Apr-09 22:29
sureshreddy178927-Apr-09 22:29 
AnswerRe: Problem with silverlight Pin
Mark Salsbery28-Apr-09 5:35
Mark Salsbery28-Apr-09 5:35 
QuestionProblem in silverlight Pin
sureshreddy178927-Apr-09 17:26
sureshreddy178927-Apr-09 17:26 
AnswerRe: Problem in silverlight Pin
VCsamir27-Apr-09 19:16
VCsamir27-Apr-09 19:16 
GeneralRe: Problem in silverlight Pin
sureshreddy178927-Apr-09 21:17
sureshreddy178927-Apr-09 21:17 
QuestionRe: Problem in silverlight Pin
Mark Salsbery28-Apr-09 5:36
Mark Salsbery28-Apr-09 5:36 
QuestionSilverlight to WPF Porting Pin
bdb3886527-Apr-09 12:51
bdb3886527-Apr-09 12:51 
AnswerRe: Silverlight to WPF Porting Pin
Mark Salsbery27-Apr-09 14:07
Mark Salsbery27-Apr-09 14:07 
GeneralRe: Silverlight to WPF Porting Pin
bdb3886528-Apr-09 6:42
bdb3886528-Apr-09 6:42 
GeneralRe: Silverlight to WPF Porting Pin
Mark Salsbery28-Apr-09 8:01
Mark Salsbery28-Apr-09 8:01 
GeneralRe: Silverlight to WPF Porting Pin
bdb3886528-Apr-09 11:10
bdb3886528-Apr-09 11:10 
GeneralRe: Silverlight to WPF Porting Pin
Mark Salsbery28-Apr-09 12:44
Mark Salsbery28-Apr-09 12:44 
GeneralRe: Silverlight to WPF Porting Pin
bdb3886529-Apr-09 6:52
bdb3886529-Apr-09 6:52 
QuestionRe: Silverlight to WPF Porting Pin
Mark Salsbery29-Apr-09 7:21
Mark Salsbery29-Apr-09 7:21 
AnswerRe: Silverlight to WPF Porting Pin
bdb3886529-Apr-09 7:44
bdb3886529-Apr-09 7:44 
GeneralRe: Silverlight to WPF Porting Pin
Mark Salsbery29-Apr-09 8:10
Mark Salsbery29-Apr-09 8:10 
GeneralRe: Silverlight to WPF Porting Pin
bdb3886529-Apr-09 9:10
bdb3886529-Apr-09 9:10 
GeneralRe: Silverlight to WPF Porting Pin
Mark Salsbery29-Apr-09 9:13
Mark Salsbery29-Apr-09 9:13 
GeneralRe: Silverlight to WPF Porting Pin
bdb3886529-Apr-09 9:46
bdb3886529-Apr-09 9:46 
GeneralRe: Silverlight to WPF Porting Pin
Mark Salsbery29-Apr-09 10:39
Mark Salsbery29-Apr-09 10:39 
QuestionAssign a Command to a Template Item Pin
#realJSOP27-Apr-09 9:38
professional#realJSOP27-Apr-09 9:38 
I have a button on a ControlTemplate. I want to handle its click events in the control that uses the template. How would I make that happen?

<ControlTemplate x:Key="UDPTemplateTabControlEx" TargetType="{x:Type TabControl}">
    <Grid x:Name="Grid" KeyboardNavigation.TabNavigation="Local">
        <ScrollViewer x:Name="HeaderPanelEx" Grid.Row="0" Grid.Column="0"...>
            <ScrollViewer.Style>
                <Style TargetType="{x:Type ScrollViewer}">
                    <Setter Property="Template">
                        <Setter.Value>
                            <ControlTemplate>
                                <Grid Margin="0,0,0,0" Grid.Row="0" x:Name="HeaderPanelEx">

                                    <Button Grid.Column="0" Width="25" Content="..." />

                                </Grid>
                            </ControlTemplate>
                        </Setter.Value>
                    </Setter>
                </Style>
            </ScrollViewer.Style>
        </ScrollViewer>
    </Grid>
</ControlTemplate>


I tried putting a name property on it, but I still can't see it in intellisense in the code...


"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001


AnswerRe: Assign a Command to a Template Item Pin
Wes Aday27-Apr-09 10:47
professionalWes Aday27-Apr-09 10:47 
AnswerRe: Assign a Command to a Template Item Pin
Mark Salsbery27-Apr-09 11:08
Mark Salsbery27-Apr-09 11:08 
GeneralRe: Assign a Command to a Template Item Pin
#realJSOP29-Apr-09 23:58
professional#realJSOP29-Apr-09 23:58 

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.