Click here to Skip to main content
15,913,027 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: Using a Grid as an ItemsPanel Pin
Ed.Poore14-Apr-08 9:41
Ed.Poore14-Apr-08 9:41 
GeneralRe: Using a Grid as an ItemsPanel Pin
Pete O'Hanlon14-Apr-08 9:54
mvePete O'Hanlon14-Apr-08 9:54 
GeneralRe: Using a Grid as an ItemsPanel Pin
Ed.Poore14-Apr-08 10:48
Ed.Poore14-Apr-08 10:48 
GeneralRe: Using a Grid as an ItemsPanel Pin
Pete O'Hanlon14-Apr-08 11:11
mvePete O'Hanlon14-Apr-08 11:11 
GeneralRe: Using a Grid as an ItemsPanel Pin
Ed.Poore14-Apr-08 11:57
Ed.Poore14-Apr-08 11:57 
GeneralRe: Using a Grid as an ItemsPanel Pin
Pete O'Hanlon14-Apr-08 12:02
mvePete O'Hanlon14-Apr-08 12:02 
GeneralRe: Using a Grid as an ItemsPanel Pin
Ed.Poore14-Apr-08 12:12
Ed.Poore14-Apr-08 12:12 
GeneralRe: Using a Grid as an ItemsPanel Pin
Ed.Poore17-Apr-08 12:07
Ed.Poore17-Apr-08 12:07 
Sorted it out, Poke tongue | ;-P Thanks to someone on the WPF forum @ MSDN (god I miss the CP forums compared to those).  Basically everything I was doing was correct but didn't realise that the TextBlock / ItemTemplate is bound by a ListItem so you have to set the Grid.Row and Grid.Column from there.  E.g.
<Style TargetType="{x:Type ListItem}">
  <Setter PropertyName="Grid.Row" Value="{Binding Path=Start, Converter={StaticResource DateToRowConverter}}" />
  <Setter PropertyName="Grid.Column" Value="{Binding Path=Start, Converter={StaticResource DateToColConverter}}" />
</Style>




GeneralRe: Using a Grid as an ItemsPanel Pin
Pete O'Hanlon17-Apr-08 23:12
mvePete O'Hanlon17-Apr-08 23:12 
GeneralRe: Using a Grid as an ItemsPanel Pin
Ed.Poore17-Apr-08 23:20
Ed.Poore17-Apr-08 23:20 
GeneralRe: Using a Grid as an ItemsPanel Pin
Pete O'Hanlon18-Apr-08 4:21
mvePete O'Hanlon18-Apr-08 4:21 
GeneralRe: Using a Grid as an ItemsPanel Pin
Ed.Poore18-Apr-08 4:29
Ed.Poore18-Apr-08 4:29 
QuestionHow to add multiple column in a single column of gridview in WPF? Pin
bankey10108-Apr-08 21:42
bankey10108-Apr-08 21:42 
AnswerRe: How to add multiple column in a single column of gridview in WPF? Pin
Pete O'Hanlon9-Apr-08 2:44
mvePete O'Hanlon9-Apr-08 2:44 
GeneralRe: How to add multiple column in a single column of gridview in WPF? Pin
User 2710099-Apr-08 3:24
User 2710099-Apr-08 3:24 
GeneralRe: How to add multiple column in a single column of gridview in WPF? Pin
Pete O'Hanlon9-Apr-08 3:31
mvePete O'Hanlon9-Apr-08 3:31 
GeneralRe: How to add multiple column in a single column of gridview in WPF? Pin
User 2710099-Apr-08 3:39
User 2710099-Apr-08 3:39 
QuestionFlipping Image? [modified] Pin
KBou8-Apr-08 1:41
KBou8-Apr-08 1:41 
GeneralRe: Flipping Image? Pin
Pete O'Hanlon8-Apr-08 1:48
mvePete O'Hanlon8-Apr-08 1:48 
GeneralRe: Flipping Image? Pin
KBou8-Apr-08 2:03
KBou8-Apr-08 2:03 
GeneralRe: Flipping Image? Pin
Pete O'Hanlon8-Apr-08 2:31
mvePete O'Hanlon8-Apr-08 2:31 
GeneralRe: Flipping Image? Pin
User 2710098-Apr-08 3:21
User 2710098-Apr-08 3:21 
GeneralRe: Flipping Image? Pin
Ed.Poore10-Apr-08 10:26
Ed.Poore10-Apr-08 10:26 
GeneralRe: Flipping Image? Pin
User 27100910-Apr-08 10:31
User 27100910-Apr-08 10:31 
GeneralRe: Flipping Image? Pin
Ed.Poore10-Apr-08 10:35
Ed.Poore10-Apr-08 10:35 

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.