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

  • Home
  • SEARCH
  • 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 1106945
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T01:51:58+00:00 2026-05-17T01:51:58+00:00

I tried to create a custom control, having a semitransparent rounded background: <Canvas> <TextBlock

  • 0

I tried to create a custom control, having a semitransparent rounded background:

<Canvas>
    <TextBlock x:Name="StopText" Text="Some test text"/>
    <Rectangle Fill="SkyBlue"
               Width="{Binding Source=StopText, Path=ActualHeight}" 
               Height="20"  
               RadiusX="5" RadiusY="5" Opacity="0.2"/>
</Canvas>

The problem is that I can’t, probably, bind to the ActualHeight/ActualWidth properties, cause they are not dependency ones.

What to do to mantain the rectangle and textbox of same size?

  • 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-17T01:51:59+00:00Added an answer on May 17, 2026 at 1:51 am

    The correct binding is to use ElementName, not Source, when binding to another element:

    <Canvas>
        <TextBlock x:Name="StopText" Text="Some test text"/>
        <Rectangle Fill="SkyBlue"
                   Width="{Binding ElementName=StopText, Path=ActualHeight}" 
                   Height="20"  
                   RadiusX="5" RadiusY="5" Opacity="0.2"/>
    </Canvas>
    

    Also, you do realize that you are binding the width of the Rectangle to the Height of the TextBlock, right?

    If this is really the way you want to set up your control, you will want to bind the Rectangle‘s Width to the TextBlock‘s ActualWidth, and Height to ActualHeight.

    UPDATE
    Per the comments below, here is an implementation using a Grid with no binding:

    <Grid HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
        <TextBlock x:Name="StopText" Text="Some test text"/>
        <Rectangle Fill="SkyBlue"
                   HorizontalAlignment="Stretch"
                   VerticalAlignment="Stretch"  
                   RadiusX="5" RadiusY="5" Opacity="0.2"/>
    </Grid>
    

    Grid and Canvas use different layout systems, and since you aren’t using the functionality the Canvas provides, Grid is the better choice.

    The big difference in the child elements is that the Rectangle now just uses Horizontal and VerticalAlignment to Stretch across the entire Grid, instead of worrying about the sizes of anything.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to create a custom server control (WebControl) with a text box. I
I want to create a custom toolbar control (descendant TToolBar) which should have some
I'm having some trouble styling a custom control that I built. Here's the control
I tried to create a custom user control in C# that handles other controls
I am creating a custom text box control to have some default formatting and
I created a custom canvas control inheriting from WPF Canvas . I am using
Is it possible to create a Custom Control which inherits from System.Web.UI.WebControls.Login and change
I want to create an custom control (descendant of TRichEdit). I simply want add
I'm having trouble with a custom control template. My intention is to use a
I'm attempting to create a custom control that inherits from System.Web.UI.WebControls.ListView . Codebehind: using

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.