I have an application that was created using inline xaml for creating the needed dataelements. I have decided to convert these data elements to their own custom controls.

Example - I have a Question control which extends headeredItemsControl and it is working perfectly.

Now however I have to work on the actual answerkey for the QuestionControl. I had thought about making them a separate control as well. And that is working as far as getting them to appear where I want them to be.

In my original application I am using a datatemplateselector to style the answerkey as needed:

<t:QuestionTemplateSelector ScrollViewer.HorizontalScrollBarVisibility="Auto"
                                x:Key="QuestionTemplateSelector">
        <sb:BindingHelper.Binding>
            <sb:BindingList>
                <sb:RelativeSourceBinding Path="DataContext.TypeID"
                                          TargetProperty="QuestionType"
                                          RelativeMode="FindAncestor"
                                          AncestorType="ListBox"
                                          BindingMode="TwoWay" />
            </sb:BindingList>
        </sb:BindingHelper.Binding>
        <t:QuestionTemplateSelector.TemplateBoolean>
            <DataTemplate>
                <StackPanel Orientation="Horizontal">
                    <custom:RadioButton AnswerId="{Binding ID}"
                                        AnswerType="{Binding AnswerTypes}"
                                        IsChecked="{Binding IsSelected,Mode=TwoWay}"
                                        Content="{Binding Path=ModifiedAnswerText}">
                        <sb:BindingHelper.Binding>
                            <sb:BindingList>
                                <sb:RelativeSourceBinding Path="DataContext.ID"
                                                          TargetProperty="GroupName"
                                                          RelativeMode="FindAncestor"
                                                          AncestorType="ListBox"
                                                          BindingMode="TwoWay" />
                            </sb:BindingList>
                        </sb:BindingHelper.Binding>
                    </custom:RadioButton>
                    <ContentControl Style="{StaticResource ContentControlStyle}"
                                    Visibility="{Binding ShowAdditionalSelection,Converter={StaticResource BooleanToVisibilityConverter}}">
                        <ContentControl.ContentTemplate>
                            <DataTemplate>
                                <t:AdditionalTextTemplateSelector TemplateFreeText="{StaticResource FreeTextDataTemplate}"
                                                                  TemplateListSelection="{StaticResource TemplateListSelectionDataTemplate}"
                                                                  TemplatePhysicianSelection="{StaticResource TemplatePhysicianSelectionDataTemplate}">

                                    <sb:BindingHelper.Binding>
                                        <sb:BindingList>
                                            <sb:RelativeSourceBinding Path="DataContext"
                                                                      TargetProperty="DataContext"
                                                                      RelativeMode="FindAncestor"
                                                                      AncestorType="ContentControl"
                                                                      Converter="{StaticResource DebugConverter}"
                                                                      BindingMode="TwoWay" />
                                            <sb:RelativeSourceBinding Path="DataContext.TypeID"
                                                                      TargetProperty="AnswerType"
                                                                      RelativeMode="FindAncestor"
                                                                      AncestorType="ContentControl"
                                                                      Converter="{StaticResource DebugConverter}"
                                                                      BindingMode="TwoWay" />
                                        </sb:BindingList>
                                    </sb:BindingHelper.Binding>

                                </t:AdditionalTextTemplateSelector>
                            </DataTemplate>
                        </ContentControl.ContentTemplate>
                    </ContentControl>
                </StackPanel>
            </DataTemplate>
        </t:QuestionTemplateSelector.TemplateBoolean>
        <t:QuestionTemplateSelector.TemplateFreeText>
            <DataTemplate>
                <TextBox HorizontalContentAlignment="Stretch"
                         Text="{Binding AdditionalText,Mode=TwoWay}" />
            </DataTemplate>
        </t:QuestionTemplateSelector.TemplateFreeText>
        <t:QuestionTemplateSelector.TemplateAnyMultipleChoice>
            <DataTemplate>
                <StackPanel Orientation="Horizontal">
                    <custom:CheckBox AnswerId="{Binding ID}"
                                     Content="{Binding Path=ModifiedAnswerText}"
                                     AnswerText="{Binding AnswerText}"
                                     AnswerType="{Binding AnswerTypes}"
                                     IsChecked="{Binding IsSelected,Mode=TwoWay}" />
                    <ContentControl Style="{StaticResource ContentControlStyle}"
                                    Visibility="{Binding ShowAdditionalSelection,Converter={StaticResource BooleanToVisibilityConverter}}">
                        <ContentControl.ContentTemplate>
                            <DataTemplate>
                                <t:AdditionalTextTemplateSelector TemplateFreeText="{StaticResource FreeTextDataTemplate}"
                                                                   TemplateListSelection="{StaticResource TemplateListSelectionDataTemplate}"
                                                                   TemplatePhysicianSelection="{StaticResource TemplatePhysicianSelectionDataTemplate}">

                                    <sb:BindingHelper.Binding>
                                        <sb:BindingList>
                                            <sb:RelativeSourceBinding Path="DataContext"
                                                                      TargetProperty="DataContext"
                                                                      RelativeMode="FindAncestor"
                                                                      AncestorType="ContentControl"
                                                                      Converter="{StaticResource DebugConverter}"
                                                                      BindingMode="TwoWay" />
                                            <sb:RelativeSourceBinding Path="DataContext.TypeID"
                                                                      TargetProperty="AnswerType"
                                                                      RelativeMode="FindAncestor"
                                                                      AncestorType="ContentControl"
                                                                      Converter="{StaticResource DebugConverter}"
                                                                      BindingMode="TwoWay" />
                                        </sb:BindingList>
                                    </sb:BindingHelper.Binding>

                                </t:AdditionalTextTemplateSelector>
                            </DataTemplate>
                        </ContentControl.ContentTemplate>
                    </ContentControl>
                </StackPanel>
            </DataTemplate>
        </t:QuestionTemplateSelector.TemplateAnyMultipleChoice>
        <t:QuestionTemplateSelector.TemplateSingleMultipleChoice>
            <DataTemplate>
                <StackPanel Orientation="Horizontal">
                    <custom:RadioButton AnswerId="{Binding ID}"
                                        Content="{Binding Path=ModifiedAnswerText}"
                                        AnswerText="{Binding AnswerText}"
                                        AnswerType="{Binding AnswerTypes}"
                                        IsChecked="{Binding IsSelected,Mode=TwoWay}">
                        <sb:BindingHelper.Binding>
                            <sb:BindingList>
                                <sb:RelativeSourceBinding Path="DataContext.ID"
                                                          TargetProperty="GroupName"
                                                          RelativeMode="FindAncestor"
                                                          AncestorType="ListBox"
                                                          BindingMode="TwoWay" />
                            </sb:BindingList>
                        </sb:BindingHelper.Binding>
                    </custom:RadioButton>
                    <ContentControl Style="{StaticResource ContentControlStyle}"
                                    Visibility="{Binding ShowAdditionalSelection,Converter={StaticResource BooleanToVisibilityConverter}}">
                        <ContentControl.ContentTemplate>
                            <DataTemplate>
                                <t:AdditionalTextTemplateSelector TemplateFreeText="{StaticResource FreeTextDataTemplate}"
                                                                  TemplateListSelection="{StaticResource TemplateListSelectionDataTemplate}"
                                                                  TemplatePhysicianSelection="{StaticResource TemplatePhysicianSelectionDataTemplate}">

                                    <sb:BindingHelper.Binding>
                                        <sb:BindingList>
                                            <sb:RelativeSourceBinding Path="DataContext"
                                                                      TargetProperty="DataContext"
                                                                      RelativeMode="FindAncestor"
                                                                      AncestorType="ContentControl"
                                                                      Converter="{StaticResource DebugConverter}"
                                                                      BindingMode="TwoWay" />
                                            <sb:RelativeSourceBinding Path="DataContext.TypeID"
                                                                      TargetProperty="AnswerType"
                                                                      RelativeMode="FindAncestor"
                                                                      AncestorType="ContentControl"
                                                                      Converter="{StaticResource DebugConverter}"
                                                                      BindingMode="TwoWay" />
                                        </sb:BindingList>
                                    </sb:BindingHelper.Binding>

                                </t:AdditionalTextTemplateSelector>
                            </DataTemplate>
                        </ContentControl.ContentTemplate>
                    </ContentControl>
                </StackPanel>
            </DataTemplate>
        </t:QuestionTemplateSelector.TemplateSingleMultipleChoice>
        <t:QuestionTemplateSelector.TemplateNumericUpDown>
            <DataTemplate>
                <CheckBox IsChecked="{Binding IsSelected,Mode=TwoWay}">
                    <custom:NumericUpDown Width='50'
                                          Minimum='0'
                                          Maximum='10'
                                          DecimalPlaces='0'
                                          Increment='1'
                                          AnswerId="{Binding ID}"
                                          AnswerType="{Binding AnswerTypes}"
                                          Value="{Binding AnswerText,Mode=TwoWay,FallbackValue=2}" />
                </CheckBox>
            </DataTemplate>
        </t:QuestionTemplateSelector.TemplateNumericUpDown>
    </t:QuestionTemplateSelector>

But I am having an issue as to where this information needs to go for my lookless controls? The actual selector lives in my AnswerKey Datatemplate. However with moving to lookless I am not sure that is correct anymore.

<ListBox ItemsSource="{Binding QuestionsVMCollection,Mode=TwoWay}">
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <my:QuestionControl QuestionNumber="{Binding QuestionNumber}"
                                        QuestionText="{Binding Text}"
                                        ItemsSource="{Binding AnswerKeyVMCollection}"
                                        ShowQuestionNumber="True">
                        <ItemsControl>
                            <my:AnswerControl1 />
                        </ItemsControl>

                    </my:QuestionControl>

                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>

I think I only need a nudge to get back on track. Any help would be greatly appreciated. How would you handle this scenario?

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.