Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Dependency Properties In Windows 8.1
WhatsApp
Aman Kumar
9y
5.8k
0
0
100
Article
CSharpDependencyProperties.zip
Dependency Properties
Create a windows store blank app.
Add a user control in app,
Create a textblock in usercontrol,
<Grid>
<TextBlock HorizontalAlignment=
"Center"
VerticalAlignment=
"Center"
FontSize=
"50"
Foreground=
"Aqua"
/>
</Grid>
Create a dependency property in code behind of user control either by coding or using shortcut propdp.
public
string
TextBlockText
{
get
{
return
(
string
) GetValue(TextBlockTextProperty);
}
set
{
SetValue(TextBlockTextProperty, value);
}
}
// Using a DependencyProperty as the backing store for TextBlockText. This enables animation, styling, binding, etc...
public
static
readonly
DependencyProperty TextBlockTextProperty =
DependencyProperty.Register(
"TextBlockText"
,
typeof
(
string
),
typeof
(MyUserControl1),
new
PropertyMetadata(
string
.Empty));
Bind the textblock’s text property to the TextBlockText dependency property,
<TextBlock Text=
"{Binding TextBlockText}"
Set datacontext for usercontrol so that the binding can work.
public
MyUserControl1()
{
this
.InitializeComponent();
(
this
.Content
as
FrameworkElement).DataContext =
this
;
}
In main page create two instances of usercontrol to show the functioning of dependency properties.
<StackPanel Orientation=
"Horizontal"
HorizontalAlignment=
"Center"
VerticalAlignment=
"Center"
>
<local:MyUserControl1 x:Name=
"control1"
TextBlockText=
"Control 1 text"
/>
<local:MyUserControl1 x:Name=
"control2"
TextBlockText=
"Control 2 text"
/>
</StackPanel>
Run your application and check.
Dependency Properties
Windows 8.1
Windows Controls
Up Next
Ebook Download
View all
Frontend Developer Interview Questions and Answers
Read by 1k people
Download Now!
Learn
View all
Membership not found