An Introduction to WPF
56:08
9 ай бұрын
Пікірлер
@fotoh1589
@fotoh1589 Ай бұрын
Considering some lifestyle videos beside your amazing lectures
@BradOntheGo
@BradOntheGo 8 ай бұрын
this looks amazing... curious of backstory, ie what is happening here with bees in the tree vs houses? Also, I am here after watching your wasm deep dive on W\>. exceptional presentation!
@jalalmalekpour402
@jalalmalekpour402 11 ай бұрын
thankful for all Coureses C#
@eandkmusic
@eandkmusic Жыл бұрын
Are you also a beekeeper? I'm like you - a developer, but 5 years ago I also had 5 beehives and my own honey))
@SingleWolfTraveller
@SingleWolfTraveller Жыл бұрын
love u Rainer. Thanks for sharing
@cavila0217
@cavila0217 2 жыл бұрын
Hi Rainer, I hope that you are doing well, I'm really thankful to you for all the things that you have taught me, you are my favorite content creator and mentor, keep it up!
@muralikothapalli
@muralikothapalli 2 жыл бұрын
This is a gem of Paralell in C#. Thank you
@DhimanDa
@DhimanDa 2 жыл бұрын
You are a fantastic teacher. Please allow us to comment on your videos <3
@DhimanDa
@DhimanDa 2 жыл бұрын
Please allow us to comment on your video! You are a fantastic teacher on the planet.
@randyrandall1767
@randyrandall1767 2 жыл бұрын
I just wanted to tell you... You are an amazing teacher and I love your C# videos. Keep at it!
@justaDN96
@justaDN96 2 жыл бұрын
hi, bin abendschüler wollt nur sagen weiter so mit den tutorial videos und bitte den abendschullehrer hinweisen, dass es auch deinen ytkanal gibt. danke!
@sjpt1434
@sjpt1434 3 жыл бұрын
Thank u very much ..I learned much from you ..even my German improved little bit :) while watching German video:) best regards from Yemen (South Arabia)
@moosegoose1282
@moosegoose1282 3 жыл бұрын
is there a community for ur c# courses?
@morsheddld
@morsheddld 3 жыл бұрын
where does this body() method come from?
@younghsiang2509
@younghsiang2509 4 жыл бұрын
Great tutorial!
@gussy_44
@gussy_44 4 жыл бұрын
Where am I?
@gelordtube
@gelordtube 4 жыл бұрын
1:05 applies to xamarin forms too?
@gelordtube
@gelordtube 4 жыл бұрын
Hallo Herr Rainer, das ist gut video!!! I watched all the video series since 2010 ~ and they still help me to practice and understand mvvm; two things to add: 1. Why not use a ViewModelBase class? I know it was for educational purposes, but it would have been great to implement that base class the second is like the first, use a RelayCommand class to implements the meths of Icommand.
@juliososa2384
@juliososa2384 4 жыл бұрын
Thanks Man...
@amyniovi8087
@amyniovi8087 6 жыл бұрын
So interesting ! thanks! :)
@sovanraksa2112
@sovanraksa2112 6 жыл бұрын
So, if my computer have 4 cores, I can do 4 tasks?
@Christian92177
@Christian92177 6 жыл бұрын
Parallel
@jimficarra7839
@jimficarra7839 6 жыл бұрын
This was awesome on so many levels. I learned more in these 26 minutes than I could have in 4 days of going over documentation. Thank you!
@WahidRezgui
@WahidRezgui 6 жыл бұрын
excellent series of video thanks a lot
@whocaresday
@whocaresday 6 жыл бұрын
do you teach C# for beginners?
@messedupfmj
@messedupfmj 7 жыл бұрын
By far the best MVVM/WPF/Entity Framework tutorial I have found. Basic yes, but functional and practical. Thank you Rainer
@FaNIXAUZ
@FaNIXAUZ 7 жыл бұрын
Ever heard of stopwatch class?
@sureshpalepu9458
@sureshpalepu9458 7 жыл бұрын
Thanks, Very Useful
@abdelilahlamkadmi4198
@abdelilahlamkadmi4198 7 жыл бұрын
Please, forgive me. I found the source code on your site. I find this serie of videos very very importante.
@abdelilahlamkadmi4198
@abdelilahlamkadmi4198 7 жыл бұрын
It's an important tutorial, but , it would be very helpful if the author provide the code source.
@EschoolIsrael
@EschoolIsrael 7 жыл бұрын
Tutorial to save in the wallet for each working day
@CTRLZ3
@CTRLZ3 8 жыл бұрын
Excellent. nice work!
@jcorellana29
@jcorellana29 8 жыл бұрын
Excelente!!!! Gracias
@muhammadwaqasaziz4054
@muhammadwaqasaziz4054 8 жыл бұрын
Simply AWESOME
@muhammadwaqasaziz4054
@muhammadwaqasaziz4054 8 жыл бұрын
AWESOME that's all i can say.
@dfgs27
@dfgs27 8 жыл бұрын
Very clear tutorial serie. Thanks.
@Ryuuzaki667
@Ryuuzaki667 8 жыл бұрын
I want your help please. I have this code. Task[] arrayT = null; int indexT = -1; int numberOfT = 2; while (indexT < (numberOfT - 1)) { indexT++; arrayT[indexT] = Task.Factory.StartNew(() => method(indexT)); } Task.WaitAll(arrayT); //I want to create 2 or more Task in my array dynamically using a while loop, but not works. This code executes only one Task. But if I build my array manually, it works properly. arrayT[0] = Task.Factory.StartNew(() => method(0)); arrayT[1] = Task.Factory.StartNew(() => method(1)); arrayT[2] = Task.Factory.StartNew(() => method(2)); Please help me to create my task dynamically. I'm Sorry but my english is not good.
@sureshpalepu9458
@sureshpalepu9458 7 жыл бұрын
double result = 0d; // Task[] task = new Task[Number_OF_Iterations]; Task<double>[] tasks = new Task<double>[Number_OF_Iterations]; for (int i = 0; i < Number_OF_Iterations; i++) { tasks[i] = Task.Run(() => DoIntensiveCalculations()); } Task.WaitAll(tasks); foreach (var item in tasks) { result += item.Result; } Console.WriteLine("The Results is {0}", result);
@AntonioMSpb
@AntonioMSpb 8 жыл бұрын
May I ask you to share solution code somewhere?
@AntonioMSpb
@AntonioMSpb 8 жыл бұрын
Thank you for clear and exhaustively explanations on howto with ef + wpf + testing
@vinugopinath1803
@vinugopinath1803 9 жыл бұрын
Thanks a lot Rainer...
@BorisFischman
@BorisFischman 9 жыл бұрын
Great stuff ! Thank you.
@sachinkainth9508
@sachinkainth9508 9 жыл бұрын
Thanks for this great explanation.
@shawn576
@shawn576 10 жыл бұрын
I like the way you make a new line before .Method(). It looks much easier to read.. I should start doing that.
@con_sensus
@con_sensus 10 жыл бұрын
Excellent! Thanks!
@brettsullivan4025
@brettsullivan4025 10 жыл бұрын
#ohogs!!!!!!!!!!!!!!!
@StahliSoft
@StahliSoft 10 жыл бұрын
Vielen Dank für das Tutorial !
@chandantiwari2441
@chandantiwari2441 10 жыл бұрын
I am surprise to see that the video I was looking for the long time has already been uploaded since 2010. Thank you for uploading this video.
@codeyoga
@codeyoga 10 жыл бұрын
Must watch to learn TPL. Looking forward to the Rx video !
@zaid.doctor2015
@zaid.doctor2015 10 жыл бұрын
thanks for the tutorial.but PropertyChanged event is alway returning null.
@Sevius969
@Sevius969 10 жыл бұрын
Really useful information. Thanks
@silvioconci
@silvioconci 10 жыл бұрын
Best TPL video EVER.... and I've seen a lot these days.