Click here to Skip to main content
15,914,163 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: Game algorithm problem Pin
Abhinav S15-Jul-11 6:51
Abhinav S15-Jul-11 6:51 
GeneralRe: Game algorithm problem Pin
Neo1010119-Jul-11 0:02
Neo1010119-Jul-11 0:02 
GeneralRe: Game algorithm problem Pin
Pete O'Hanlon19-Jul-11 1:46
mvePete O'Hanlon19-Jul-11 1:46 
GeneralRe: Game algorithm problem Pin
Neo101017-Nov-11 0:25
Neo101017-Nov-11 0:25 
QuestionWCF Async Call random response Pin
NTheOne13-Jul-11 18:01
NTheOne13-Jul-11 18:01 
AnswerRe: WCF Async Call random response Pin
Abhinav S13-Jul-11 20:36
Abhinav S13-Jul-11 20:36 
Questionvisualstudio/experssion blend Pin
arkiboys13-Jul-11 10:31
arkiboys13-Jul-11 10:31 
AnswerRe: visualstudio/experssion blend Pin
Mark Salsbery13-Jul-11 11:24
Mark Salsbery13-Jul-11 11:24 
AnswerRe: visualstudio/experssion blend Pin
Abhinav S13-Jul-11 20:37
Abhinav S13-Jul-11 20:37 
AnswerRe: visualstudio/experssion blend Pin
Kunal Chowdhury «IN»20-Jul-11 0:19
professionalKunal Chowdhury «IN»20-Jul-11 0:19 
AnswerRe: visualstudio/experssion blend Pin
Oludayo Alli20-Aug-11 7:15
Oludayo Alli20-Aug-11 7:15 
GeneralRe: visualstudio/experssion blend Pin
arkiboys20-Aug-11 7:20
arkiboys20-Aug-11 7:20 
GeneralRe: visualstudio/experssion blend Pin
Oludayo Alli20-Aug-11 8:39
Oludayo Alli20-Aug-11 8:39 
QuestionBind to converter in XAML Pin
_Madmatt13-Jul-11 9:54
_Madmatt13-Jul-11 9:54 
AnswerRe: Bind to converter in XAML [modified] Pin
Mark Salsbery13-Jul-11 11:27
Mark Salsbery13-Jul-11 11:27 
GeneralRe: Bind to converter in XAML Pin
_Madmatt13-Jul-11 23:41
_Madmatt13-Jul-11 23:41 
GeneralRe: Bind to converter in XAML Pin
Pete O'Hanlon14-Jul-11 0:02
mvePete O'Hanlon14-Jul-11 0:02 
GeneralRe: Bind to converter in XAML Pin
_Madmatt14-Jul-11 0:29
_Madmatt14-Jul-11 0:29 
GeneralRe: Bind to converter in XAML Pin
Pete O'Hanlon14-Jul-11 0:53
mvePete O'Hanlon14-Jul-11 0:53 
GeneralRe: Bind to converter in XAML Pin
_Madmatt14-Jul-11 1:27
_Madmatt14-Jul-11 1:27 
It's not even hitting the converter! Frown | :(

Not with this XAML:
<phone:PhoneApplicationPage.Resources>
<DataTemplate x:Key="groupItemTemplate">
            <Border Width="99" Height="99" Background="{Binding Path=., Converter={StaticResource groupItemBackgroundBrush}}" Margin="6" IsHitTestVisible="{Binding HasItems}">
                <TextBlock Text="{Binding GroupTitle}" 
                                       FontFamily="{StaticResource PhoneFontFamilySemiBold}"
                                       FontSize="36"
                                       Margin="{StaticResource PhoneTouchTargetOverhang}"
                                       Foreground="{StaticResource PhoneForegroundBrush}"                                        
                                       VerticalAlignment="Bottom"/>
                <Border.Resources>
                    <valueConverters:TrackGroupToGroupItemBackgroundBrushConverter x:Key="groupItemBackgroundBrush" />
                </Border.Resources>
            </Border>
        </DataTemplate>

        
    </phone:PhoneApplicationPage.Resources>


And not with this one too:

<phone:PhoneApplicationPage.Resources>
    <DataTemplate x:Key="groupItemTemplate"
            <Border Width="99" Height="99" Background="{Binding Path=., Converter={StaticResource groupItemBackgroundBrush}}" Margin="6" IsHitTestVisible="{Binding HasItems}">
                <TextBlock Text="{Binding GroupTitle}" 
                                       FontFamily="{StaticResource PhoneFontFamilySemiBold}"
                                       FontSize="36"
                                       Margin="{StaticResource PhoneTouchTargetOverhang}"
                                       Foreground="{StaticResource PhoneForegroundBrush}"                                        
                                       VerticalAlignment="Bottom"/>
                            </Border>
        </DataTemplate>

<valueConverters:TrackGroupToGroupItemBackgroundBrushConverter x:Key="groupItemBackgroundBrush" />        

    </phone:PhoneApplicationPage.Resources>

GeneralRe: Bind to converter in XAML Pin
skv_lviv14-Jul-11 20:01
skv_lviv14-Jul-11 20:01 
GeneralRe: Bind to converter in XAML Pin
_Madmatt17-Jul-11 0:23
_Madmatt17-Jul-11 0:23 
AnswerRe: Bind to converter in XAML Pin
Abhinav S13-Jul-11 20:44
Abhinav S13-Jul-11 20:44 
GeneralRe: Bind to converter in XAML Pin
_Madmatt13-Jul-11 23:43
_Madmatt13-Jul-11 23:43 
QuestionMembership Role Pin
picasso212-Jul-11 17:24
picasso212-Jul-11 17:24 

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.