GithubHelp home page GithubHelp logo

youtube's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

youtube's Issues

Avalonia - Help with grouped collections compiler problem.

First off, thanks for the great Avalonia series! I'm trying to reproduce the work you did with the expander menu for the channels, but I get an error here:

image

I see in the video that Rider gives you a warning about this (yellow squiggly) but I'm definitely getting an error. and when trying to compile:

image

I have the _channelConfigurations defined exactly as you have, and the .GroupBy is identical.

image

I'm really new to Avalonia (and MVVM in general) so I don't really know how to troubleshoot this. I did end up trying to just make a Dictionary<string,List> but that led to its own issues while compiling.

Any help or a guidance on a direction to look at would be very appreciated. In case it matters, I'm using 11.0.0-preview5 (as where it looks like your project is using 11.0.0-preview1) and .NET Core 7.0 instead of 6.0.

Slack Dark Theme lost dark color

I have implemented the slack dark theme.

Today I opened slack and the message background is not dark anymore.

I have attached a file of how it currently looks.
2018-04-17 08_45_40-slack

IsExpanded Binding not working

Hello Luke,

First of all thank you for your great job. I am trying to learn C# on my own and your videos help me a lot.

However, I would like to use your WpfTreeModel in my application, but the Binding with the IsExpanded property doesn't seem to work. When I expand a drive on the view, the property DirectoryItemViewModel.Children is filled as it would have to be, but the subfolders don't appear on the view.

I've attached my solution. If you could take a look, I would be very gratefull ;-)

Thank you.

OPCAnalyser.zip

File extension association to WiX Toolkit's material

Hello,
I think the Title is pretty self-descriptive, but I thought that your cool video about WiX Toolkit is missing it. Would you like to extend this Repo with File extension association ?
For example opening some *.xyz files via your Console App by double clicking on it ?
That would be cool.

02-TreeViewsAndValueConverters - expanding items through a viewmodel

I'm reporting also here my comment about "C# WPF UI Tutorials: 02 - TreeViews and Value Converters" on youtube

As I've already written, great videos! I'm experienced and I still find interesting tips ;-)
Of course this was intended to be an initial part of the tutorial for beginners, anyway... We could do this without code behind (so no expand event) but with an attached behavior for the selected item of the treeview.
My quick example in my mvvm_treeview repo here where I'm only adding dummy strings without actually looking at the file system: it's a simple demo to share opinions with you!

    public class MenuItem : ViewModelBase
    {
        public MenuItem()
        {
            this.Items = new ObservableCollection<MenuItem>();
        }

        public string Title { get; set; }

        private ObservableCollection<MenuItem> items;
        public ObservableCollection<MenuItem> Items {
            get { return items; }
            set
            {
                items = value;
                OnPropertyChanged();
            }
        }
    }

I wish to think that - after decoupling the view from the model by means of an attached behavior - the simple (view-)model class MenuItem - behind the treeview binding - is the C# WPF equivalent of the Haskell lazy free point or more generally the equivalent of a free algebra...

This declarative binding is really powerful

<e:Interaction.Behaviors>
     <local:BindableSelectedItemBehavior SelectedItem="{Binding SelectedItem, Mode=TwoWay}" />
</e:Interaction.Behaviors>

the setter of this property implements the lazy Expanded event in a more abstract way: IMO this pattern is even cooler than the too much opinionated Elm MVU...

Thanks again for your great work

Recommit the scripts ?

After watching video #2 on WpfTreeView and coming back here to pull some of the cs scripts i noticed that MainWindow.xaml doesn't match the video's version. The other scripts that are different as well. I could edit the scripts but my current code is giving me errors.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.