C# Edge 304   WPF30   Xaml named Style
6:02
C# Edge 302   WPF28   Xaml GridSplitter
5:43
C# Edge 299   WPF25   Xaml Grid
9:04
9 жыл бұрын
C# Edge 296    WPF22   Xaml DockPanel
6:11
C# Edge 293    WPF19   Xaml WrapPanel
2:22
C# Edge 291    WPF17   Xaml MediaElement
6:44
C# Edge 286    WPF12   StackPanel
6:51
9 жыл бұрын
C# Edge 285    WPF11   TextBlock
7:39
9 жыл бұрын
C# Edge 278   Random Number Generation
3:13
Пікірлер
@freecodebootcamp2.014
@freecodebootcamp2.014 2 жыл бұрын
Polymorphism overload vs override in C# Explained kzbin.info/www/bejne/apPEq6mAac98atU
@failtv5120
@failtv5120 3 жыл бұрын
he talks normal on 1,5 speed lol
@NELKOV
@NELKOV 3 жыл бұрын
You just earned a sub nice chill tutorial!
@ragtop63
@ragtop63 3 жыл бұрын
Very nice. Thanks for this!
@edsonferraz1
@edsonferraz1 3 жыл бұрын
How Add the VideoLAN VLC ActiveX Plugin v1 in COM components?
@littlenewton6
@littlenewton6 4 жыл бұрын
谢谢!
@elkhoukhi
@elkhoukhi 4 жыл бұрын
Thank you, this was very informative!
@georgepius5694
@georgepius5694 4 жыл бұрын
Hi @cyorgmagus Where can I find the source code? I'm unable to find it on the mentioned website.
@AV1461
@AV1461 4 жыл бұрын
How do you remove the button appearance? As in only the icon showing.
@yalcinnmustafa
@yalcinnmustafa 4 жыл бұрын
very nice work!!! but link is broken or does'nt work.Could you share codes? Please
@JohanKorthout
@JohanKorthout 5 жыл бұрын
Thanks for the nice video with explanation. The website does not work however. I get a privacy page and can not click further. Could you upload the sourcecode and share a new download link? Thanks already very much.
@johnnygeorge3687
@johnnygeorge3687 5 жыл бұрын
how to print this list view in .pdf file can you explain
@johnnygeorge3687
@johnnygeorge3687 5 жыл бұрын
How to Print this list view
@kkiwi8559
@kkiwi8559 5 жыл бұрын
Fantastic video! your very good at explaining this.
@spoiledMEATintimate
@spoiledMEATintimate 5 жыл бұрын
Thanks! this was useful showing how to use the tab order in visual studio
@prajaktakelkar8615
@prajaktakelkar8615 5 жыл бұрын
fullname and name exactly what is it? exactly which names are used ?
@kannanmassey5783
@kannanmassey5783 5 жыл бұрын
Thanks. Can you guide about folderoperdialog could scroll down on it's own to selected path, it will be a great help
@Oktanination
@Oktanination 5 жыл бұрын
You are my hero
@paulpeters5844
@paulpeters5844 5 жыл бұрын
I'd give this 5 likes if I could. Super helpful.
@davidbohadana8274
@davidbohadana8274 6 жыл бұрын
🦄 are the best :)
@farizlokman2179
@farizlokman2179 6 жыл бұрын
if I want to run other .exe is it possible Sir?
@tonys8096
@tonys8096 6 жыл бұрын
Thanks for the demonstration. I actually was able to do a bit easier doing the following://these class level variables get reset in the event that starts the playing of the selected mediaprivate int _hrs = 0;private int _mins = 0;private int _secs = 0;//this is declared as class level variable. private static string FORMAT_TIME = "{0,1}:{1,2:D2}:{2,2:D2}";In the TimeChanged event which you can wire up using the following code:vclPlayer.TimeChanged += TimeChanged;And then the TimeChanged event...private void TimeChanged(object sender, VlcMediaPlayerTimeChangedEventArgs e){ long currentElapsed = e.NewTime / 1000; if(currentElapsed % 60==0 && _secs>1) { _secs = 0; _mins += 1; if (_mins % 60 == 0) { _hrs+=1; } } else { _secs = Convert.ToInt32(currentElapsed % 60); } //tslTime is a label on the status bar that gets updated each time the TimeChanged event gets fired //as the media is playing. tslTime.Text = string.Format(FORMAT_TIME, _hrs, _mins,_secs);}Hope this makes sense and helps someone else
@victorcanever
@victorcanever 6 жыл бұрын
you were rigth.... I've tryied everything.... the "file:///" string saved my project
@Ragnark1
@Ragnark1 6 жыл бұрын
Question: public Dictionary<Cubie_Runtime_Script.CubeSides, List<List<int>>> CubeFaces; CubeFaces = new Dictionary<Cubie_Runtime_Script.CubeSides, List<List<int>>>(); CubeFaces.Add(Cubie_Runtime_Script.CubeSides.up, new List<List<int>>()); How might I proceed from here to populate a dictionary with the x and y coordinates of each cube in a Rubik's Cube face?
@ilyasturan5456
@ilyasturan5456 6 жыл бұрын
choose items vlc yok. Nasıl ekleyebilirim?yardım et
@burzel-wurzel
@burzel-wurzel 6 жыл бұрын
Thank you
@art12345ar
@art12345ar 6 жыл бұрын
THANKS
@ramaganeshk6094
@ramaganeshk6094 6 жыл бұрын
Can we load rtsp url in vlc play list?Kindly reply to me?
@raulpetcu9202
@raulpetcu9202 6 жыл бұрын
thank you,sir!
@nqaiser
@nqaiser 6 жыл бұрын
Very good tutorial, Thankyou. Can you confirm once released you can still send the .exe file alone and icons woudl still display properly?
@breakingbricksgames5699
@breakingbricksgames5699 6 жыл бұрын
idol teach me now thanks good video
@Jbrandan
@Jbrandan 6 жыл бұрын
es un genio muchas gracias por compartir sus conocimientos no hay ningún tutorial que explique como funciona el justificado del lineas solo el de usted.
@LifeIsGood1992
@LifeIsGood1992 6 жыл бұрын
thankssss
@sumitmakwana6104
@sumitmakwana6104 6 жыл бұрын
how to pass values in
@gabrielemiliovieira
@gabrielemiliovieira 6 жыл бұрын
good evening cyborgmagus to make the playlist load multiple files?
@gabrielemiliovieira
@gabrielemiliovieira 6 жыл бұрын
First of all I want to say that you are congratulating the video, there are few that I found working with VLC in the forms and yours already helped me a lot in a small project that I am developing for studies I would like to know if there is any way to insert a progress bar to run along with the time of each video in the list and what would be the code and if it has like that time of the textbox to run in a decreasing way, I am new to programming and this would help a lot , success with canel and thank you very much.
@kubictechnology7995
@kubictechnology7995 6 жыл бұрын
can I start the video from particular time
@JosephR9
@JosephR9 6 жыл бұрын
how the indexer knows what atribute take ?
@erfansh7812
@erfansh7812 7 жыл бұрын
@youtube , delet this video | 2012
@mbass511
@mbass511 7 жыл бұрын
thanks
@ralphfest.pusteblume9530
@ralphfest.pusteblume9530 7 жыл бұрын
The the explanation
@hacker1fans111
@hacker1fans111 7 жыл бұрын
thanks
@hacker1fans111
@hacker1fans111 7 жыл бұрын
radioButton.""Increment"" c# my problem any solution
@nicorafaelborden4499
@nicorafaelborden4499 7 жыл бұрын
where's your website sir? Very well explained by the way.
@aqilahrose
@aqilahrose 7 жыл бұрын
done subscribe! i want to ask..if i implement a file copier..and i add this function to count the file size..how can i implement the time taken during data transfer(from source directory to target directory) i want to get leg:: 1000 byte in 200ms/minute/hour..hope u can help me! tqq
@warwickwestonwrigful
@warwickwestonwrigful 7 жыл бұрын
That advice about needing a URI instead of a file was a real life saver man. Bless Warwick.
@shekariphilemon1166
@shekariphilemon1166 7 жыл бұрын
pls in have been trying to visit cyborgmaguscsharpedge.com but it is not connecting
@shekariphilemon1166
@shekariphilemon1166 7 жыл бұрын
this is a very nice job.
@sametkaraaslan6807
@sametkaraaslan6807 7 жыл бұрын
Hi, can you share the project?
@tejasmankar9082
@tejasmankar9082 7 жыл бұрын
i have a question hope you solve this. How to copy from a browser using C#
@Shadows42069
@Shadows42069 7 жыл бұрын
private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { textBox1.Text = webBrowser1.Url.AbsoluteUri; }
@Shadows42069
@Shadows42069 7 жыл бұрын
try this