Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7714455
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T02:07:52+00:00 2026-06-01T02:07:52+00:00

Still learning WPF….thanks for any help. Is there any way to Refactor this: <ListBox

  • 0

Still learning WPF….thanks for any help.

Is there any way to Refactor this:

    <ListBox Name="lbEvents" 
                 VerticalAlignment="Stretch" 
                 SelectionMode="Multiple"
                 Loaded="lbCenterEvents_Loaded" 
                 HorizontalAlignment="Stretch"
                 BorderBrush="Transparent"
                 Background="Transparent" 
                 SelectionChanged="lbCenterEvents_SelectionChanged"
                 ItemContainerStyle="{StaticResource KioskCheckboxListItemContainer}">
            <ListBox.Resources>
                <SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="Transparent" />
                <SolidColorBrush x:Key="{x:Static SystemColors.HighlightTextBrushKey}" Color="Black" />
                <SolidColorBrush x:Key="{x:Static SystemColors.ControlBrushKey}" Color="Transparent" />
            </ListBox.Resources>
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <CheckBox Grid.Column="0"
                        Margin="0,10,0,0"
                        Padding="5,30,5,10"
                        DockPanel.Dock="Top" 
                        Style="{StaticResource KioskCheckBox}"
                        Background="{StaticResource brshSecondaryColor}"
                        FontSize="26" 
                        HorizontalAlignment="Stretch"
                        IsChecked="{Binding Path=IsSelected, RelativeSource={RelativeSource AncestorType={x:Type ListBoxItem}}}" 
                        Content="{Binding DisplayDescriptionForKiosk}">
                    </CheckBox>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>

Into something like this:

<ListBox Name="lbEvents" Style="{StaticResource MyFinalListBox}"
                 VerticalAlignment="Stretch" 
                 SelectionMode="Multiple"
                 Loaded="lbCenterEvents_Loaded" 
                 HorizontalAlignment="Stretch"
                 BorderBrush="Transparent"
                 Background="Transparent"  />

Just trying to get an idea…I shouldn’t need exact code, pseudo code should be sufficient (I hope), thanks in advance.

EDIT: I’m asking this because I’m trying to find a way to do this with the least amount of references to StaticResources. I realize I can pull out the templates and styles, but I am hoping some one can show me how reduce it to one StaticResource.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T02:07:53+00:00Added an answer on June 1, 2026 at 2:07 am

    Yes you want (something like)

    <UserControl>
       <UserControl.Resources>
           <DataTemplate x:Key="MyItemTemplate" DataType="{x:Type MyDataType}">
               <CheckBox Grid.Column="0"
                  Margin="0,10,0,0"
                  Padding="5,30,5,10"
                  DockPanel.Dock="Top" 
                  Style="{StaticResource KioskCheckBox}"
                  Background="{StaticResource brshSecondaryColor}"
                  FontSize="26" 
                  HorizontalAlignment="Stretch"
                  IsChecked="{Binding Path=IsSelected, RelativeSource={RelativeSource AncestorType={x:Type ListBoxItem}}}" 
                  Content="{Binding DisplayDescriptionForKiosk}">
                </CheckBox>
            </DataTemplate>
            <Style x:Key="MyFinalListBox" TargetType="{x:Type ListBox}">
                <Setter Property="SelectionMode" Value="Multiple" />
                ... put more properties here
            </Style>
       </UserControl.Resources>
    </UserControl>
    
    <ListBox Name="lbEvents" 
             ItemTemplate="{StaticResource MyItemTemplate}"
             Style="{StaticResource MyFinalListBox}"
             VerticalAlignment="Stretch" 
             Loaded="lbCenterEvents_Loaded" 
             HorizontalAlignment="Stretch"
             BorderBrush="Transparent"
             Background="Transparent"  />
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Still learning this stuff on WPF, themes, derivations, etc. I understand basics on the
Still picking my way through learning XAML/WPF. If someone can show me how to
Still learning Objective-C / iPhone SDK here. I think I know why this wasn't
I'm still learning ASP.NET and I often see code like this throughout parts of
I'm still learning about REST and, in my test, came up with this scenario
I'm still learning the WPF ropes, so if the following question is trivial or
I'm still at the early stages of learning WPF and have decided to try
Still fooling around with WPF and learning as I go. Trying now to build
I'm still learning Haskell, and I was wondering if there is a less verbose
Still learning this jQuery stuff.... I like this ajax page loader; it works for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.