Click here to Skip to main content
15,884,537 members
Home / Discussions / WPF
   

WPF

 
AnswerMessage Removed Pin
4-Feb-09 10:55
professionalN_tro_P4-Feb-09 10:55 
GeneralRe: DataTemplate list Horizontally Pin
Gideon Engelberth4-Feb-09 12:04
Gideon Engelberth4-Feb-09 12:04 
GeneralMessage Removed Pin
5-Feb-09 4:36
professionalN_tro_P5-Feb-09 4:36 
GeneralRe: DataTemplate list Horizontally Pin
Gideon Engelberth5-Feb-09 6:30
Gideon Engelberth5-Feb-09 6:30 
GeneralMessage Removed Pin
5-Feb-09 8:29
professionalN_tro_P5-Feb-09 8:29 
GeneralMessage Removed Pin
6-Feb-09 3:02
professionalN_tro_P6-Feb-09 3:02 
GeneralMessage Removed Pin
6-Feb-09 6:02
professionalN_tro_P6-Feb-09 6:02 
GeneralRe: DataTemplate list Horizontally Pin
Gideon Engelberth6-Feb-09 7:13
Gideon Engelberth6-Feb-09 7:13 
Check the Immediate debugging window when the UserControl is loaded. Are there warnings about not being able to perform a binding because the property Strip cannot be found on object of some type or another? If so, that is referring to the ItemContainerStyle and you should bind to Content.Strip and Content.Panel instead.

As far as the grid, I did pull out two lines when I copied from the previous post because I thought they would not be necessary. Apparently I should have tested that assumption first. The lines I pulled out made each row and column part of a SharedSizeGroup since the grid does not always seem to size * columns the way it seems like it should.

for (int strip = 0; strip < _stripsPerPanel; strip++)
{
    rd = new RowDefinition();
    rd.Height = new GridLength(1, GridUnitType.Star);
    rd.SharedSizeGroup = "RowGroup";
    grd.RowDefinitions.Add(rd);
}

for (int part = 0; part < _partsPerStrip; part++)
{
    cd = new ColumnDefinition();
    cd.Width = new GridLength(1, GridUnitType.Star);
    cd.SharedSizeGroup = "ColumnGroup";
    grd.ColumnDefinitions.Add(cd);
}

QuestionMessage Removed Pin
4-Feb-09 5:55
professionalN_tro_P4-Feb-09 5:55 
AnswerMessage Removed Pin
4-Feb-09 7:57
professionalN_tro_P4-Feb-09 7:57 
GeneralRe: ListBox SelectedItems binding Pin
Gideon Engelberth5-Feb-09 3:02
Gideon Engelberth5-Feb-09 3:02 
QuestionAccessing silverlight application throw outlook addin Pin
AR Reddy3-Feb-09 22:31
AR Reddy3-Feb-09 22:31 
QuestionRe: Accessing silverlight application throw outlook addin Pin
Mark Salsbery4-Feb-09 6:01
Mark Salsbery4-Feb-09 6:01 
QuestionTemplates for calendar control Pin
priyagee3-Feb-09 18:17
priyagee3-Feb-09 18:17 
AnswerRe: Templates for calendar control Pin
Mark Salsbery3-Feb-09 19:18
Mark Salsbery3-Feb-09 19:18 
QuestionIs there any native WPF Multiselect combobox available ? Pin
Member 57039053-Feb-09 8:19
Member 57039053-Feb-09 8:19 
AnswerRe: Is there any native WPF Multiselect combobox available ? Pin
JS 20084-Feb-09 3:17
JS 20084-Feb-09 3:17 
AnswerRe: Is there any native WPF Multiselect combobox available ? Pin
schiebel-t6-Feb-09 2:26
schiebel-t6-Feb-09 2:26 
QuestionSimple listbox stuff Pin
Ray Cassick3-Feb-09 7:22
Ray Cassick3-Feb-09 7:22 
AnswerRe: Simple listbox stuff Pin
Mark Salsbery3-Feb-09 15:14
Mark Salsbery3-Feb-09 15:14 
QuestionCan´t catch XamlParseException Pin
Czechtim3-Feb-09 1:01
Czechtim3-Feb-09 1:01 
Questionplotting in WPF Pin
jeshmitha3-Feb-09 0:21
jeshmitha3-Feb-09 0:21 
AnswerRe: plotting in WPF Pin
Pete O'Hanlon3-Feb-09 1:01
mvePete O'Hanlon3-Feb-09 1:01 
QuestionWPF Browser Application ApplicationCommands.Paste Pin
haticeaaaaaa2-Feb-09 21:12
haticeaaaaaa2-Feb-09 21:12 
QuestionUser Controls Rock!!!! Pin
BlitzPackage2-Feb-09 13:06
BlitzPackage2-Feb-09 13:06 

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.