Communiquez avec les autres et partagez vos connaissances professionnelles

Inscrivez-vous ou connectez-vous pour rejoindre votre communauté professionnelle.

Suivre

What is the type of Content property?

- String- Integer- Object- Text

user-image
Question ajoutée par Mohannad Bakbouk , Full Stack Web Developer , Almohtaseb
Date de publication: 2016/10/19
Abdul Rafi K
par Abdul Rafi K , Technical Lead , Symphony Teleca

A content is an object which has the ability to contain other controls.

 

WPF sample:

<Button> <StackPanel> <Ellipse Height="40" Width="40" Fill="Blue"/> <TextBlock TextAlignment="Center">Button</TextBlock> </StackPanel> 

</Button> 

 

C# Code reference:

// Create a Button which contains a DateTime object as its content. Button objectContent = new Button(); DateTime dateTime1 = new DateTime(2004, 3, 4, 13, 6, 55); objectContent.Content = dateTime1;

More Questions Like This