Hello, it's an excellent serie of videos ! Very clear and usefull, thanks ! May i suggest a small improvement ? When you open the app, before clic on a menu button, there's nothing on the right part. Is it possible to open the app on a default page ? On a home page for instance ? How would you do that ? Thanks for all !
@AndyRyan-h1eКүн бұрын
kzbin.info/www/bejne/jYSlqpKPpcyeaZo What is that keyboard shortcut?
@林平之-x8s9 күн бұрын
你的数据库在哪里?怎么做的访问啊,没有看到你的项目里面有数据库呢?
@Fenrich200513 күн бұрын
one question how you agrade aligment as propietie?
@Lactorioga17 күн бұрын
Design actions look simple, but how effective it is! thx
@МертваяТишина-х4в29 күн бұрын
[Browsable(true)] включил отображение в свойствах , меняю цвет и ничего не происходит, что делать?
@michagalli2082Ай бұрын
has somebody also issues with the border? it disappears on the bottom side
@muratbaylan5531Ай бұрын
Harikasın usta
@МертваяТишина-х4вАй бұрын
Не работает на весь экран если потянуть форум вверх или в бок
@МертваяТишина-х4вАй бұрын
When you click on the cross button, the window closed. What should i do?
@torchok19081986Ай бұрын
thanks for tutorial . thanks to you i could create nicely modern datetimepicker. Any idea, how to use it in WPF Project? How to add created datetimepicker to WPF c# ?
@nguyentinh2030Ай бұрын
Thanks for video, what the Iconbutton? you have video about Mennu Main in video, from Viet Nam
@ТА-33_МаксимчукАнітаАй бұрын
Can this code be correct on windows 11?
@ArdaArman-u5uАй бұрын
adamsın
@alhimbiblia2 ай бұрын
i immediately followed youu 🤗
@vjyothsnapriya2 ай бұрын
gooe morning sir not showing in the toggle buttons in the tollbox sir how to retifmy sir
@RajeevRanjan-z9l2 ай бұрын
hello, I need help. I have done everything in this video. I think my Login button is some how not working how it was supposed to be work. but when I tried through Click event It started working. Why is that and how to correct that. Thanks for your Time.
@vinnypassmore56572 ай бұрын
Hows the implicit symbol done?
@Ali_gaming-f5j2 ай бұрын
Thanks for this nice code. Is there a solution to the problem that it does not work on net 8
@jbaelous45532 ай бұрын
vc e incrivel mn, ajudou dmais muitoo boom o video
@tinyikoevansmabasa-tm7ni2 ай бұрын
This is awesome. You really simplify my life sir!!!
@Amocles2 ай бұрын
I'm having issues with scaling. My laptop is set to 300% scaling and this was developed on a monitor. Navigation bar on left isn't showing properly. Autosize = true just makes it disappear. Is this solution supposed to work with scaling? Any tips?
@prasantgupta522 ай бұрын
in my visual studio 2022 in large files the themes are not getting applied properly
@AdithyaSudhakar2 ай бұрын
Very informative Thanks for the video!
@TrollpoeCarter-y7k2 ай бұрын
McKenzie Points
@phamnam96273 ай бұрын
Thank you, sir! From my point of view, PaleNight VS is the best theme for visual studio ever
@narendrabs97733 ай бұрын
Fantastic explanation. Kudos for bringing quality tutorials. Gained knowledge from this video. If you can possibly do a video on creating a custom textbox control which has an icon on the left hand side. The icon should be an icon from fonts such as font awesome or segoe ui icons? Can we also create round corner buttons in the same way?
@KimbraPrecissi-f5p3 ай бұрын
Albert Isle
@mizantednioc3 ай бұрын
Amazing! Thank you
@MrEd-qc7vr3 ай бұрын
Where did th "mainView()" come from? I rewatched this tutorial and the previous one and you don't explain that part!... when I changed the app.xaml to run "applicationStart" now nothing works :/
@RajeevRanjan-z9l2 ай бұрын
If you have not removed your MainWindow.xaml then use this way :- var mainWindow = new MainWindow(); if you have, then create a window but under Views folder with this name MainView.xaml and then go about it way this video is telling you.
@mizanurtech66533 ай бұрын
I can learn a lot from this short video. Many thanks অল্প সময়ের এই ভিডিও থেকে আমি অনেক কিছু শিখতে পারছি। অসংখ ধন্যবাদ
@HeadingWatch3 ай бұрын
Jackson Christopher Hall Scott Davis Margaret
@SandraYoung-j5b3 ай бұрын
Williams Gary Harris Helen Young Robert
@Gandaki_News3 ай бұрын
Avialable for excel ?
@ranjanchaudhary93003 ай бұрын
How can I get PNG that you add in buttons?
@nguyentinh20303 ай бұрын
Hello, thanks for great tutorial. I see a small issue, when set value for Texts in code, example RJTextbox.Texts = "abc", if click to textbox -> value will remove. I modify at set properties of Texts, if value not null or not empty then removePlaceHoder.
@花本纾3 ай бұрын
very good tutorials🤩
@이기석-p1u3 ай бұрын
May I use this to use for commercial?
@pearld0163 ай бұрын
thanks so mutch bro
@kevindgu023 ай бұрын
Appreciate the tutorial, but where's the Music Playlist? I loved it :P Ty
@niodev4 ай бұрын
Thanks😘
@isasayin31024 ай бұрын
Awesome tutorial. You not only show what to do, you also explain. Thanks for your effort.
@magcag4 ай бұрын
hello RJ! thanks for the video! i do exactly the same thing with you. but when i change bordersize, it is distorted. i have made many research but could not find any issue. appreciate if you reply :)
@paolorossi56814 ай бұрын
THANK YOU VERY MUCH !!😀😀
@nguyentinh20304 ай бұрын
Hello, thanks for a good tutorial, have a issue with border when mouse up event when move form.
@nguyentinh20304 ай бұрын
I have update code to fix this issue private bool dragging = false; private Point startPoint = new Point(0, 0); private void panelTitleBar_MouseDown(object sender, MouseEventArgs e) { //ReleaseCapture(); //SendMessage(this.Handle, 0x112, 0xf012, 0); dragging = true; startPoint = new Point(e.X, e.Y); } private void panelTitleBar_MouseMove(object sender, MouseEventArgs e) { if (dragging) { Point p = PointToScreen(e.Location); Location = new Point(p.X - this.startPoint.X, p.Y - this.startPoint.Y); } } private void panelTitleBar_MouseUp(object sender, MouseEventArgs e) { dragging = false; }
@sertunc-k5o4 ай бұрын
how can I implement rounded corner? thank you
@sydneymascarenhas3164 ай бұрын
how to add gradient in category
@JiteeCheewapun4 ай бұрын
how to add round?
@robuu58904 ай бұрын
since you said at the beginning that WinForms is limited, what frameworks would you recommend that you feel aren't as limited