For my exercise:
I have to concat the values of two input fields (string), in order to show them - through a binding object - in a Label
Here the XAML Code:
- We published plenty of articles, blogs, videos, in the year 2019 under different categories. Thank you, authors, for all the contributions.
- Here are the top 20 C# Corner authors based on the number of articles, blogs, videos, and total points earned in the year 2019.
"txtFirstName" HorizontalAlignment="Left" Height="45" Margin="35,84,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="144"- Text="{Binding ConcatFullName, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}"/>
"txtLastName" HorizontalAlignment="Left" Height="45" Margin="210,84,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="144"- Text="{Binding ConcatFullName, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}"/>
- Content="Name Verkettung" HorizontalAlignment="Left" Margin="403,53,0,0" VerticalAlignment="Top" FontSize="16" FontFamily="Segoe UI Black"/>
- HorizontalAlignment="Left" Margin="403,84,0,0" VerticalAlignment="Top" Width="144"
- Foreground="#FF002DFF" FontSize="14" Height="45" Content="{Binding ConcatFullName}"/>
Giovanbattista BarraPosted Jan 1, 2020, 9:05 AM
Rajanikant HawaldarPosted Dec 30, 2019, 8:45 PM