Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# using reflection to access Window properties

Tags:

c#

reflection

wpf

How do you use reflection to access properties of Window objects?

Here's a minimal example:

.xaml file:

<Window x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow">
    <TextBox x:Name="Textbox" Text=""/>
</Window>

code behind file:

public class A
{
    public int Prop { get; set; }
}

public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
        this.Test.Text = "blah";

        PropertyInfo p1 = this.GetType().GetProperty("Textbox");
        PropertyInfo p2 = new A().GetType().GetProperty("Prop");
    }
}

p1 is null (p2 isn't as expected). Why is it so? Is the Window type some kind of a special object? Or is it because the type of Textbox is generated as an internal field?

    #line 5 "..\..\MainWindow.xaml"
    [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
    internal System.Windows.Controls.TextBox Textbox;
like image 679
ubi Avatar asked Aug 06 '15 06:08

ubi


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

Is C language easy?

C is a general-purpose language that most programmers learn before moving on to more complex languages. From Unix and Windows to Tic Tac Toe and Photoshop, several of the most commonly used applications today have been built on C. It is easy to learn because: A simple syntax with only 32 keywords.

What is C in C language?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.


2 Answers

All named elements become internal fields, after XAML is compiled. This:

<TextBox x:Name="Textbox" Text=""/>

ultimately transforms to this:

internal TextBox TextBox;

Hence, to obtain metadata you have to call GetField this way:

GetType().GetField("NameInXaml", BindingFlags.Instance | BindingFlags.NonPublic);
like image 142
Dennis Avatar answered Sep 22 '22 17:09

Dennis


As you found out yourself, Textbox is a field, not a property. In addition, it is not public, so you should try the following:

FieldInfo f1 = this.GetType().GetField("Textbox", BindingFlags.NonPublic | BindingFlags.Instance);
like image 40
andreask Avatar answered Sep 20 '22 17:09

andreask