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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T02:26:19+00:00 2026-06-14T02:26:19+00:00

I got a FrameworkElement within the eventhandler of a class. Is there a possibility

  • 0

I got a FrameworkElement within the eventhandler of a class. Is there a possibility to check if this FrameworkElement is an element that has a borderthickness/borderbrush property ?

Like

var element = myframeworkelement as IHasBorder;
element.borderthickness = new Thickness(1,2,3,4);

Does something like this exist ?

  • 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-14T02:26:20+00:00Added an answer on June 14, 2026 at 2:26 am

    The properties BorderThickness and BorderBrush are defined in the Control class.

    So you can try to cast your FrameworkElement to Control, and if that works, set the properties:

    public partial class Window1 : Window
    {
        public Window1()
        {
            InitializeComponent();
    
            var pnl = new StackPanel();
            this.Content = pnl;
    
            var button = new Button();
            button.Content = "Hi";
    
            pnl.Children.Add(button);
    
            SetBorder(button);
        }
    
        public void SetBorder(FrameworkElement fe)
        {
            var borderControl = fe as Control;
    
            if (borderControl != null)
            {
                borderControl.BorderThickness = new Thickness(10);
                borderControl.BorderBrush = Brushes.Red;
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got an app that turns some XAML Usercontrols into PNGs - this has
got some problems. Built an applet that has to be used step-by-step. After each
let's assume I've got a UserControl like this: <UserControl x:Class=SomeNamespace.SomeClass> <Grid> <TextBlock Name=SampleTextBlock />
got this actionlink: <%= Html.ActionLink(Corian&reg; Worktops, Index, Corian)%> the word corian has to carry
Got this error while trying to get the variables out of a class. Using
Got this ScopeExit class off code-project but it would not build on GCC 4.5.3.
Got a class that serializes into xml with XMLEncoder nicely with all the variables
Got some code here that isn't working: $(#sidebar ul li:last).each(function(){ $(this).addClass(last); }); Basically I
I've got a custom control that inherits from FrameworkElement . It contains a Visual
Got this error message while trying to load view: The model item passed into

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.