- Classic Shell: Forum
- Start Buttons
- Who is online
- Icons for Windows apps
- When to use icons
- Using the right type of icon
- Use a predefined icon.
- Use a font.
- Use a Scalable Vector Graphics (SVG) file.
- Use Geometry objects.
- You can also use a bitmap image, such as PNG, GIF, or JPEG, although we don’t recommend it.
- Make the icon do something
- Create an icon button
- Create a series of icons in a command bar
- Windows 10 Taskbar icons gone and start button not working
- Replies (5)
Classic Shell: Forum
It is currently Mon Apr 19, 2021 2:10 am |
All times are UTC — 8 hours [ DST ]
Start Buttons
Page 1 of 21 | [ 511 topics ] | Go to page 1 , 2 , 3 , 4 , 5 . 21 Next |
Topics | Author | Replies | Views | Last post | |
---|---|---|---|---|---|
Announcements | |||||
Classic Shell no longer in development. Source code released [ Go to page: 1 , 2 , 3 , 4 ] Tue Dec 03, 2019 5:52 pm | |||||
The official THANK YOU thread 🙂 and user reviews [ Go to page: 1 , 2 , 3 , 4 ] Mon Feb 25, 2019 2:23 pm | |||||
Compare Start Menus:Classic Shell vs Windows 10 and others | |||||
Icons for Explorer toolbar buttons and some Start menu items | |||||
How to create or set a custom Start button easily | |||||
FORUM RULES: PLEASE READ TO SAVE TIME | |||||
How To: Change the Start Button or its size in Classic Shell | |||||
Topics | |||||
Windows 8.1/Windows 10 Button which follows Taskbar Color | |||||
Featured animated Start buttons | |||||
Classic Shell Themed button compilation | |||||
Angry Birds Start Buttons | |||||
Windows XP Style Button compilation | |||||
Apple Logo buttons | |||||
Windows 8 / Windows 10 Themed Start button compilation | |||||
Start Buttons (Windows 7/Vista) compilation | |||||
Start (text only buttons) | |||||
Android Buttons | |||||
Classic (pre-XP) Windows versions button compilation | |||||
I don’t believe it Win7 premultiplied | |||||
Windows XP classic button (Spanish) | |||||
Windows XP Start Button with classic logo | |||||
Change Start Menu Program Icon | |||||
windows whistler fake start button | |||||
8.1 Start Button Icon on Transparent Background at 125% Size | |||||
Dark Alienware Orb | |||||
Start buttons by Jarminx | |||||
Searching for this start button icon | |||||
OpTic Gaming Start Button | |||||
win xp | |||||
Start buttons from my Windows mockups | |||||
XP Start button without the button background | |||||
Windows XP Beta Flag Animation Start Button |
Page 1 of 21 | [ 511 topics ] | Go to page 1 , 2 , 3 , 4 , 5 . 21 Next |
All times are UTC — 8 hours [ DST ]
Who is online
Users browsing this forum: No registered users and 11 guests
Icons for Windows apps
Icons provide a visual shorthand for an action, concept, or product. By compressing meaning into a symbolic image, icons can cross language barriers and help conserve an extremely valuable resource: screen space.
Icons can appear in apps—and outside them:
Icons inside the app
Inside your app, you use icons to represent an action, such as copying text or navigating to the settings page.
Icons outside the app
Outside your app, Windows uses an icon to represent your app in the start menu and in the taskbar. If the user chooses to pin your app to the start menu, your app’s start tile can feature your app’s icon. Your app’s icon appears in the title bar and you can choose to create a splash screen with your app’s logo.
This article describes icons within your app. To learn about icons outside your app (app icons), see the app and tile icons article.
When to use icons
Icons can save space, but when should you use them?
Use an icon for actions, like cut, copy, paste, and save, or for navigation items in a navigation menu.
Use an icon if one already exists for the concept you want to represent. (To see whether an icon exists, check the Segoe icon list.)
Use an icon if it’s easy for the user to understand what the icon means and it’s simple enough to be clear at small sizes.
Don’t use an icon if its meaning isn’t clear, or if making it clear requires a complex shape.
Using the right type of icon
There are many ways to create an icon. You can use a symbol font like Segoe MDL2 Assets. You could create your own vector-based image. You can even use a bitmap image, although we don’t recommend it. Here’s a summary of the different ways you can add an icon to your app.
Use a predefined icon.
Microsoft provides over 1000 icons in the form of the Segoe MDL2 Assets font. It might not be intuitive to get an icon from a font, but our font display technology means these icons will look crisp and sharp on any display, at any resolution, and at any size. For instructions, see Segoe MDL2 icons.
Use a font.
You don’t have to use the Segoe MDL2 Assets font—you can use any font the user has installed on their system, such as Wingdings or Webdings.
Use a Scalable Vector Graphics (SVG) file.
SVG resources are ideal for icons, because they always look sharp at any size or resolution. Most drawing applications can export to SVG. For instructions, see SVGImageSource.
Use Geometry objects.
Like SVG files, geometries are a vector-based resource, so they always look sharp. However, creating a geometry is complicated because you have to individually specify each point and curve. It’s really only a good choice if you need to modify the icon while your app is running (to animate it, for example). For instructions, see Move and draw commands for geometries.
You can also use a bitmap image, such as PNG, GIF, or JPEG, although we don’t recommend it.
Bitmap images are created at a specific size, so they have to be scaled up or down depending on how large you want the icon to be and the resolution of the screen. When the image is scaled down (shrunk), it can appear blurry; when it’s scaled up, it can appear blocky and pixelated. If you have to use a bitmap image we recommend using a PNG or GIF over a JPEG.
Make the icon do something
Once you have an icon, the next step is to make it do something by associating it with command or a navigation action. The best way to do this is to add the icon to a button or a command bar.
Create an icon button
You can put an icon in a standard button. Since you can use buttons in a wider variet of places, this gives you a little more flexibility for where your action icon appears.
The are a few ways to add an icon to a button:
Step 1
Set the button’s font family to Segoe MDL2 Assets and its content property to the unicode value of the glyph you want to use:
Step 2
You can use one of the icon element objects: BitmapIcon, FontIcon, PathIcon, or SymbolIcon. This gives you more types of icons to choose from, and enables you to combine icons and other types of content, such as text, if you want:
Create a series of icons in a command bar
When you have a series of commands that go together, such as cut/copy/paste or a set of drawing commands for a photo-editing program, put them together in a command bar. A command bar takes one or more app bar buttons or app bar toggle buttons, each of which represents an action. Each button has an Icon property you use to control which icon it displays. There are a variety of ways to specify the icon.
The easiest way is to use the list of predefined icons we provide—simply specify the icon name, such as «Back» or «Stop», and the system will draw it:
For the complete list of icon names, see the Symbol enumeration.
There are other ways to provide icons for a button in a command bar:
- FontIcon — the icon is based on a glyph from the specified font family.
- BitmapIcon — the icon is based on a bitmap image file with the specified Uri.
- PathIcon — the icon is based on Path data.
To learn more about command bars, see the command bar article.
Windows 10 Taskbar icons gone and start button not working
Replies (5)
Please try these options one by one and check after each option. These options are independent and can be executed in any sequence.
1. Click on below and run Start menu troubleshooter
2. Reinstall Cortana
Windows Key+X > Click Powershell(Admin) > Copy the below and paste into Powershell by right clicking into Powershell
Get-AppXPackage -Name Microsoft.Windows.Cortana | Foreach
Reboot your computer
3. Create a New User Account and login with this new User Account to rule out corruption in user profile
Press Windows key + I to open up Settings > Click Accounts and choose Other People > Select Add someone else to this PC under Other Users > Select I don’t have this person’s sign-in information > Select Add a user without a Microsoft account > Create the user and select Next > Make the new account an administrator account > Under Other users, select the new user account you created, and then select Change account type > Select Administrator, and then select OK
4. Reinstall Display Driver
Windows Key + X > Click Device Manager > Expand Display adapters > Right click the current display adapter > Click Uninstall > Exit Device Manager > Reboot your computer
5: Run SFC and DISM to check and repair Windows files
Best regards
Vijay A. Verma @ http://www.eforexcel.com/
Timezone: UTC+05:30, PST+12:30
Availability Hours (UTC) : 05:00 AM — 05:00 PM
1 person found this reply helpful
Was this reply helpful?
Sorry this didn’t help.
Great! Thanks for your feedback.
How satisfied are you with this reply?
Thanks for your feedback, it helps us improve the site.
How satisfied are you with this reply?
Thanks for your feedback.
I’m Greg, an installation specialist and 8 year Windows MVP, here to help you.
If it won’t run normally then try in Safe Mode with Networking, or Safe Mode: https://www.digitalcitizen.life/4-ways-boot-saf.
This may be caused by a recent Windows Update.
Go to Settings > Update & Security > Windows Update > Installed Update History to see which Updates were installed about the time this started to try uninstalling them to see if that helps.
There is one that’s suspect because of so many other problems it’s caused, so I’d uninstall Cumulative Update for Version 1709: https://support.microsoft.com/en-us/help/407458. . Then restart PC to test again.
You also might also be able to get back before it via System Restore: http://home.bt.com/tech-gadgets/computing/how-t.
Then if it or any other Update reinstalls and causes the same problems, uninstall it again and block it using the Hide Updates tool here: https://www.howtogeek.com/224471/how-to-prevent.
If problems persist you can go over this checklist to make sure the install is set up correctly, optimized for best performance, and any needed repairs get done: http://answers.microsoft.com/en-us/windows/wiki.
Start with Step 4 to turn off Startup freeloaders which can conflict and cause issues, then Step 7 to check for infection the most thorough way, then step 10 to check for damaged System Files. Then continue with the other steps to go over your install most thoroughly.
If nothing else helps then run a Repair Install by installing the Media Creation Tool and choosing from it to Upgrade Now. This solves many problems and will also bring it up to the latest version which you need anyway and by the most stable method. http://windows.microsoft.com/en-us/windows-10/m.
But remember that Factory or Upgrade installs are inferior installs which most enthusiasts won’t even run because they’d expect endless issues. Consider doing the Clean Install in this link which compiles the best possible install that will stay that way as long as you stick with the tools and methods given: http://answers.microsoft.com/en-us/windows/wiki.
There is also an automated Refresh that reinstalls WIndows while shedding corrupting factory bloatware, saves your files, but doesn’t clear the drive to get it cleanest: https://www.howtogeek.com/265054/how-to-easily-.
I hope this helps. Feel free to ask back any questions and let us know how it goes. I will keep working with you until it’s resolved.
Over 100,000 helped in forums for 11 years. I don’t quit for those who are polite and cooperative.