Click here to Skip to main content
15,885,810 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: Entery key functionality in WPF textbox Pin
Hema Bairavan9-Sep-10 21:24
Hema Bairavan9-Sep-10 21:24 
GeneralRe: Entery key functionality in WPF textbox Pin
Kubajzz9-Sep-10 21:40
Kubajzz9-Sep-10 21:40 
QuestionHelp with building a gantt-like chart for research data Pin
mtproc9-Sep-10 8:57
mtproc9-Sep-10 8:57 
AnswerRe: Help with building a gantt-like chart for research data Pin
mtproc13-Sep-10 8:32
mtproc13-Sep-10 8:32 
QuestionHow can we add toggle button in silverlight grid column? Pin
amit_839-Sep-10 0:06
professionalamit_839-Sep-10 0:06 
AnswerRe: How can we add toggle button in silverlight grid column? Pin
Abhinav S9-Sep-10 0:29
Abhinav S9-Sep-10 0:29 
QuestionHow control the location and size of the page when i using wpf navigation ? Pin
Yanshof8-Sep-10 21:06
Yanshof8-Sep-10 21:06 
QuestionShow position of a chartingToolkit:LineDataPoint in a collection Pin
surfluds7-Sep-10 22:02
surfluds7-Sep-10 22:02 
I have set up the following tooltip to show the x and y values of datapoints within a WPF linechart, what I would also like to do is show the index within the collection that the point uses. How do I show this please?

<Style x:Key="ToolTipDataPointStyle" TargetType="chartingToolkit:LineDataPoint">
            <Setter Property="Background" Value="Green"/>
            <Setter Property="Template">
                <Setter.Value>
                    <ControlTemplate TargetType="chartingToolkit:LineDataPoint">
                        <Grid x:Name="Root" Opacity="1">
                            <ToolTipService.ToolTip>
                                <StackPanel Margin="2,2,2,2">
                                    <ContentControl Content="{Binding HoleSize}"  ContentStringFormat="Hole Size: {0}" />
                                    <ContentControl Content="{Binding PulseWidth}"  ContentStringFormat="Pulse Width: {0}"/>
                                    <!--<ContentControl Content="{Binding Path.[0]}"  ContentStringFormat="Data = {0}"/>-->
                                </StackPanel>
                            </ToolTipService.ToolTip>
                            <Ellipse StrokeThickness="{TemplateBinding BorderThickness}" Stroke="{TemplateBinding BorderBrush}" Fill="{TemplateBinding Background}"/>
                        </Grid>
                    </ControlTemplate>
                </Setter.Value>
            </Setter>
        </Style>

AnswerRe: Show position of a chartingToolkit:LineDataPoint in a collection Pin
PumbaPumba27-Sep-10 8:04
PumbaPumba27-Sep-10 8:04 
Questionn00b - pointer please Pin
Dalek Dave7-Sep-10 9:15
professionalDalek Dave7-Sep-10 9:15 
AnswerRe: n00b - pointer please Pin
Pete O'Hanlon7-Sep-10 9:22
mvePete O'Hanlon7-Sep-10 9:22 
GeneralRe: n00b - pointer please Pin
Dalek Dave7-Sep-10 10:44
professionalDalek Dave7-Sep-10 10:44 
GeneralRe: n00b - pointer please Pin
Pete O'Hanlon7-Sep-10 11:09
mvePete O'Hanlon7-Sep-10 11:09 
GeneralRe: n00b - pointer please Pin
Dalek Dave7-Sep-10 11:20
professionalDalek Dave7-Sep-10 11:20 
GeneralRe: n00b - pointer please Pin
Pete O'Hanlon7-Sep-10 11:30
mvePete O'Hanlon7-Sep-10 11:30 
AnswerRe: n00b - pointer please Pin
Abhinav S8-Sep-10 6:23
Abhinav S8-Sep-10 6:23 
QuestionCombo box inside a user control disappears when style is applied Pin
dashingsidds7-Sep-10 1:40
dashingsidds7-Sep-10 1:40 
AnswerRe: Combo box inside a user control disappears when style is applied Pin
Ian Shlasko7-Sep-10 2:59
Ian Shlasko7-Sep-10 2:59 
GeneralRe: Combo box inside a user control disappears when style is applied Pin
dashingsidds7-Sep-10 3:36
dashingsidds7-Sep-10 3:36 
GeneralRe: Combo box inside a user control disappears when style is applied Pin
Ian Shlasko7-Sep-10 5:44
Ian Shlasko7-Sep-10 5:44 
QuestionHow to add simple C# user control to WPF project ? Pin
Yanshof6-Sep-10 4:48
Yanshof6-Sep-10 4:48 
AnswerRe: How to add simple C# user control to WPF project ? Pin
Kunal Chowdhury «IN»6-Sep-10 18:41
professionalKunal Chowdhury «IN»6-Sep-10 18:41 
GeneralRe: How to add simple C# user control to WPF project ? Pin
Yanshof6-Sep-10 18:56
Yanshof6-Sep-10 18:56 
GeneralRe: How to add simple C# user control to WPF project ? Pin
Kunal Chowdhury «IN»6-Sep-10 19:51
professionalKunal Chowdhury «IN»6-Sep-10 19:51 
GeneralRe: How to add simple C# user control to WPF project ? Pin
Yanshof6-Sep-10 19:55
Yanshof6-Sep-10 19:55 

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.