Hello! I've been an avid viewer and a proud Patreon supporter for over 5 years, and I must say, your approach to teaching WPF has profoundly impacted my development journey. Your tutorials stand out for their clarity and depth, making complex concepts remarkably accessible. I've explored many channels, but yours truly resonates with me, offering invaluable insights that have significantly enhanced my skills. The chance to deepen my learning further through the opportunities you provide would be incredible. Thank you for your dedication and for inspiring us all to grow and excel in our coding endeavors!
@_buffer11 ай бұрын
I'm glad you've been a supporter for such a long time! Thank you! :-)
@ruchanadguzel123711 ай бұрын
i watched yout navigation video before and i liked your explanation style since then. again great video
@_buffer11 ай бұрын
That makes me very happy! Thank you! :-)
@mikehankey866613 күн бұрын
Great video, look forward to viewing others.
@noahyannis24657 ай бұрын
Nice
@bekzod332211 ай бұрын
The legend is back! :)
@malachyokwute301011 ай бұрын
Awesome, much simpler way of changing theme than I’m used to. Thanks
@_buffer11 ай бұрын
You're welcome! I'm glad you found this useful!
@belowsir52226 ай бұрын
bro is backkkkkkkkkkkkkkkkkkkkkkkkkkkk .
@NaderJomaa11 ай бұрын
Awesome Tutorial As usual 😃
@_buffer11 ай бұрын
Thank you Nader! I appreciate it! :-)
@Merlock101011 ай бұрын
I haven't tested it, but based on the .RemoveAt() and .Add() functions. How does this work if you have multiple ResourceDictionaries in your merged dictionaries? If it removes the resource dictionary at index 0 and then adds a new resourcedictionary (which will be added as the last index?), doesnt that mean toggling the button will repeatedly remove all my other resourcedictionaries and then keep adding a new one? Edit: if I'm correct, it would be better practice to use .insert() at index 0 instead, so you make sure your added resourcedictionary will be the one that gets removed next time.
@graemerenney81717 ай бұрын
Removing the old one by name worked for me private void OnToggleButtonChecked(object sender, RoutedEventArgs e) { _IsLightTheme = !_IsLightTheme; string newThemePath = _IsLightTheme ? "Themes/Light.xaml" : "Themes/Dark.xaml"; string oldThemePath = !_IsLightTheme ? "Themes/Light.xaml" : "Themes/Dark.xaml"; var newTheme = (ResourceDictionary)Application.LoadComponent(new Uri(newThemePath, UriKind.Relative)); var oldTheme = (ResourceDictionary)Application.LoadComponent(new Uri(oldThemePath, UriKind.Relative)); Application.Current.Resources.MergedDictionaries.Remove(oldTheme); Application.Current.Resources.MergedDictionaries.Add(newTheme); }
@customaries11 ай бұрын
good to see more videos!
@_buffer11 ай бұрын
I'm glad you appreciate it! :-)
@belowsir52226 ай бұрын
where do you coding at ? its not VS ?
@_buffer5 ай бұрын
Good question! It's Rider, by JetBrains :-)
@dafniperez110811 ай бұрын
What software are you using?
@zopenzop222511 ай бұрын
Nice video!
@_buffer11 ай бұрын
Thank you! :-)
@Shin_v211 ай бұрын
awesome video !
@FernandoLuisBernardiLucas11 ай бұрын
Great video
@_buffer11 ай бұрын
Thank you Fernando! :-)
@SajjadAlizadeh-ww8rr11 ай бұрын
Nice 👏
@_buffer11 ай бұрын
Thank you! :-)
@zakiisse751911 ай бұрын
Thanks 🎉🎉
@_buffer11 ай бұрын
You're most welcome! :-)
@uday_khare098 ай бұрын
What happened to your game videos
@_buffer8 ай бұрын
Most of the game development stuff has been moved over to the Discord server where we discuss things :-)
@programmerlp11 ай бұрын
Ok, its very simple :D
@_buffer11 ай бұрын
Super simple! :-)
@dettohu11 ай бұрын
let's goo
@_buffer11 ай бұрын
Woooo! 🎉
@Baboi6218211 ай бұрын
Yay
@_buffer11 ай бұрын
Woho! 🎉
@nocompson10 ай бұрын
Hey man Im trying to make a login UI for a competition, do you have discord? Im trying to use visual studio 2022 to make it and I want to make it more modern so if you can help Ill appreciate it ❤