About 6,900,000 results
Open links in new tab
  1. rust - How to add a window icon in Bevy? - Stack Overflow

    Nov 27, 2022 · 0 I'm making a game in rust and I want it to be legit. Bevy ECS is great. I have been following tutorials and reading documentation, but there is this one thing I want to know. Can I …

  2. Attaching an icon resource to a Rust application

    May 17, 2015 · How do you attach an icon resource to a Rust application? I've seen how it's done in C but I'm not clear on how it works in Rust. This would be on Windows. I know that Linux and OS X …

  3. How to link an icon to a Rust Windows application?

    Jan 7, 2023 · 1 In a Rust desktop application, some version of the window struct is always used, e.g., WNDCLASSW. When WNDCLASSW is defined, a class icon may be added through the struct …

  4. Changing the icon of an .exe file in Rust - Stack Overflow

    Mar 28, 2021 · Changing the icon of an .exe file in Rust Asked 4 years, 8 months ago Modified 4 years, 8 months ago Viewed 4k times

  5. windows - Extract icons from exe in Rust? - Stack Overflow

    Mar 20, 2024 · I have the path to an exe. How do I get a Vec<RgbaImage<u8>> of the images contained within? I'm fine using Windows-specific APIs. I'm also using Bevy, so math structs from …

  6. Add exe file details to binary of compiled Rust code

    Nov 20, 2022 · After compiling a Rust command line application to an *.exe binary on Windows I have checked the binary details and they are mostly blank: Is there a way to add the file description, file …

  7. GTK4 App in Rust: How to add application icon (gresource)?

    Oct 25, 2025 · I have started developing a small app in Rust using GTK4 bindings on Linux Mint. I have created the following resources.gresource.xml in the project directory: <?xml version="1.0" enco...

  8. rust - How to make a tray icon for Windows using the winapi crate ...

    Jan 5, 2019 · I am trying to use Rust's winapi crate to make a simple tray icon. I managed to do it before in C, but I can't make Rust happy. Later on I'll include the C code to show what bits of the …

  9. rust - Tauri toggle app visibility on tray icon click - Stack Overflow

    Nov 5, 2022 · in short: tray icon left click: toggle app visibility (don't show the menu) tray icon right click: show "app tray context menu" (don't toggle app's visibility) This is my first time using Tauri and using …

  10. winapi - Extracting executable's icon in rust - Stack Overflow

    Jul 28, 2024 · I'm making some code to extract the 64x64px variant of the icon in an exe file. The following code does work, but it outputs a grayscale 16x16px image. I'm still a bit new to rust so …