Windows like window look - vb.net

I am looking on the internet for two days to create a form with the extended titlebar (to have the left, right and an search-bar) and the sidebar. I extracted 3 background images from shell32.dll that are used in the sidebar.
I'd like to know if I could namespace some shell objects or is there a solution. I really would like to see this happening.
Thank you.

Code Project, non-client area. I know it's not VB, but maybe enough to glean what you need.

Related

How to create "menu grid" in kotlin

I have searched google/stackoverflow etc. for answer to my question, but I didn't quite manage to find the right one. I believe I just don't know, how to set the question properly, and thus I cannot find solution.
Is there any way, how to create grid like I drawed in following image (with red colour):
I need to add this red grid to several images, which look very simmilar. The grid field (the one selected) have rolling menu, prescribed position, and a field for additional text. Black lines in background are image in background, and the red supposed to be grid above the image. I thought of creating a lot of buttons alined to each other, but i think that is very bad way to do so.
I would like a pop-up menu from selected field, but opening new activity with same fields is usable aswell. Is there any "simple" solution for creating such grid/menu ?
Btw, I am not programmer with many experience with coding, let's say, I know basics only.
Thanks in advance.

How to make tabs on a tabbedpage?

I am learning XAML/Xamarin Forms, and have been making some initial apps. However, now I am trying to replicate a design.
Quite a lot of apps have a menu such as this:
Or this:
While also having tabs in the bottom of the page (iOS at least).
How is this achieved? If I make a TabbedPage, this adds tabs in the bottom, but adding this kind of extra "menu" - how is this done? What technique is used?
Seems is a segmented control, already exist a NuGet package created by alex rainman, You can take a look on this. maybe this will help you.
https://github.com/alexrainman/SegmentedControl

XAML Control / Layouts Image Sliding for windows 10

currently i'm developing an windows 10 uwp apps, and i'm getting trouble ini designing my apps
i'm planning to make some kind of a image slider or whatever it names, just like in the Store apps, on the top page. it looks like a banner slide or something.
but i hardly find it on tutorials anywhere in the internet nor in documentation.
i think and believe that this using a pivot, but i'm confuse how to style it. so if someone probably knows, how to achieve this, please kindly answer it.
thank you
you must use FlipView control.
Please check the documentation.
https://msdn.microsoft.com/en-us/windows/uwp/controls-and-patterns/flipview

Hidden dropdown menu like Windows 8 right side menu

I am not sure what I call it... The pulling menu in windows8? You know the one with the setting etc in it
See this picture:
http://www.eightforums.com/attachments/tutorials/3414d1330544186-lock-log-off-restart-shut-down-switch-user-windows-8-a-settings-1.jpg
How do I make one?
I can use vbscript..I know you can't use this to make what I want...
Vba and just over the last month powershell.
I was looking at Python... People keep telling me it's awesome to use can you make a menu bar like that picture in Python?
Suggestions to what to start learning and reading would be great?

Mimic Explorer.exe So I can Customize It's Toolbars

I am trying to make a form of explorer.exe so I can customize the toolbars to do more things that I want, such as create a list of what is in the current directory I'm looking at.
I'm currently trying to put a pannel onto the windows form and am using the code:
panel1.display("C:\")
I've also tried:
panel1.url("C:\")
And:
panel1.navigate("C:\")
When I used Java in class I could construct something similar to this with panels, so can someone please tell my why I can't get the panel to display the contents of the C: drive?
You are extremely close, on the right track. What you should do instead is use a simple web browser. It can do more than just browse internet pages. If you use the following code it should work:
webbrowser1.navigate("C:\")