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 964731
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T01:52:40+00:00 2026-05-16T01:52:40+00:00

My WPF UserControl contains two stack panels and each of them contains labels, text

  • 0

My WPF UserControl contains two stack panels and each of them contains labels, text boxes and radio buttons.
I would like to set VerticalAlignment property to Center to all controls in my UserControl with as little code as possible.

Now I have following solutions:

  • brute force – put VerticalAlignment="Center" in each control
  • define one style for FrameworkElement and apply it directly
  • define styles for each type of the controls on user control (this needs 3 style definitions, but automatically applies style to the control)

These three solutions need too much code.
Is there any other way to write this?
I hoped that defining style for FrameworkElement would automatically set property to all controls, but it does not work.

Here is snippet of my current XAML (I omitted second, very similar stack panel):

<UserControl.Resources>
    <Style x:Key="BaseStyle" TargetType="FrameworkElement">
        <Setter Property="VerticalAlignment" Value="Center" />
    </Style>
</UserControl.Resources>
<Grid>
    <StackPanel Orientation="Horizontal">
        <TextBlock Style="{StaticResource BaseStyle}" Text="Value:" />
        <RadioButton Style="{StaticResource BaseStyle}">Standard</RadioButton>
        <RadioButton Style="{StaticResource BaseStyle}">Other</RadioButton>
        <TextBox Style="{StaticResource BaseStyle}" Width="40"/>
    </StackPanel>
</Grid>

Edit:
Re Will’s comment: I really hate idea of writing control formatting code in codebehind. XAML should be sufficient for this really simple user control.

Re Muad’Dib’s comment: Controls I use in my user control are derived from FrameworkElement, so this is not an issue here.

  • 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-05-16T01:52:41+00:00Added an answer on May 16, 2026 at 1:52 am

    I had come across the same conundrum awhile ago as well. Not sure if this is the “best” way, but it was easy enough to manage by defining your base style and then creating separate styles for each control on the page that inherited from the base style:

    <Page
      xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      Width="500" Height="300" Background="OrangeRed">
    
    <Page.Resources>
      <Style TargetType="FrameworkElement" x:Key="BaseStyle">
        <Setter Property="VerticalAlignment" Value="Center" />
        <Setter Property="Margin" Value="0,0,5,0" />
      </Style>
    
      <Style TargetType="TextBlock" BasedOn="{StaticResource BaseStyle}" />
      <Style TargetType="RadioButton" BasedOn="{StaticResource BaseStyle}" />
      <Style TargetType="TextBox" BasedOn="{StaticResource BaseStyle}" />
    </Page.Resources>
    
     <Grid>
        <StackPanel Orientation="Horizontal">
            <TextBlock Text="Value:" />
            <RadioButton>Standard</RadioButton>
            <RadioButton>Other</RadioButton>
            <TextBox Width="75"/>
        </StackPanel>
    </Grid>
    
    </Page>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am relatively new to WPF and would like to create a UserControl that
I have a WPF usercontrol, which contains a toolbar with 5 buttons. The commands
I've created a WPF UserControl which contains a Button and a ComboBox. I'd like
I have a WPF usercontrol which contains a number of textboxes and buttons. Currently
I've created a WPF UserControl which contains a Button. I now want any consumer
I have a WPF UserControl with binding converters referenced like this: <UserControl x:Class=MyControl x:Name=MyControl
I've got a very simple WPF UserControl that looks like this: namespace MyUserControl {
I've got a very simple WPF UserControl that looks like this: namespace WpfControlLibrary1 {
In my WPF application, I have a Canvas object that contains some UserControl objects.
I have a WPF application that contains some Window s with few UserControl s

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.