Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
Part 7: Data Binding and the SampleDataSource.cs
Mar 30, 2013 at 9:06 AMit's okay, I get it know Bob, but thanks anyway. I was struggling about the binding part but I understand it now.
Windows 8 App for Channel 9 now available
Mar 30, 2013 at 6:20 AMNice... Getting it. Available in Macedonia.
Part 7: Data Binding and the SampleDataSource.cs
Mar 14, 2013 at 11:49 AM@jukkaw
I have been reading about it and I think I understand how it works, but thanks anyway.
It seemed that I should've read more on data binding.
Part 7: Data Binding and the SampleDataSource.cs
Feb 10, 2013 at 3:37 AMHi Bob & channel9 community,
I am struggling to understand how does the
" { Binding etc. } "works and have few questions about it.
E.G. file MainPage.xaml.cs
I created a public class with public static members:
public class MyClass { private static string field="Hei there! "; public static string MyProperty { get { return field; } set { field = value; } } public void DoSomething() { } public MyClass() { /* Set default values for the props and fields */ } }then in the MainPage.xaml:
I tried to bind the static string value to the TextBlock Text like this:
<TextBlock Text="{ Binding MyClass.MyProperty }" Style="{StaticResource BasicTextStyle}"/>but it seems that I missed something...
I read some articles on MSDN forums but I don't understand WHAT and HOW ( code behind ) can I bind it to a Text, Style , Source, etc. . I know it has something to do with the Binding Type.
Channel 9 Content for Beginners
Feb 02, 2013 at 3:26 AMHi Bob, great videos
, I watched C# Fundamentals: Development for Absolute Beginners and it really helped me. From today I will be starting Windows Store apps for Absolute Beginners with C# . Your approach is very helpful.
Thanks ,
Mtan3