Jump to content

toe_head2001

Administrator
  • Posts

    5,016
  • Joined

  • Last visited

  • Days Won

    155

Everything posted by toe_head2001

  1. Try using the offline installer. https://github.com/paintdotnet/release/releases
  2. Please post the diagnostic information found within paint.net. Settings -> Diagnostics -> Copy to clipboard.
  3. Have you tried adjusting the Display Scaling in the Windows Settings? https://www.windowscentral.com/how-adjust-display-scale-settings-windows-11 https://www.windowscentral.com/how-set-custom-display-scaling-setting-windows-10
  4. It's still not clear what you're asking for. Do you want to create a grid of characters (letters, numbers, symbols, ect.)? If you want to make an actual Font that can be used in other programs, paint.net can't do that.
  5. You should also be aware plugins can't access all of Paint.NET's features. Read more here: https://forums.getpaint.net/topic/14566-what-is-and-isnt-possible-when-writing-plugins/
  6. Billy must be talking about the Polygon tool from Paint.NET v3.
  7. CodeLab uses this code for dark scrollbars: [DllImport("uxtheme.dll", SetLastError = true, ExactSpelling = true, CharSet = CharSet.Unicode)] private static extern int SetWindowTheme(IntPtr hWnd, string pszSubAppName, string pszSubIdList); /// <summary> /// Use to set dark scroll bars /// </summary> internal static void EnableUxThemeDarkMode(this Control control, bool enable) { if (!OperatingSystem.IsWindowsVersionAtLeast(10, 0, 17763)) // Win 10 1809 { return; } string themeName = enable ? "DarkMode_Explorer" : null; SetWindowTheme(control.Handle, themeName, null); } Just call the extension method on your control. For example: myListBox.EnableUxThemeDarkMode(true); // enable dark scrollbar myListBox.EnableUxThemeDarkMode(false); // disable dark scrollbar
  8. Your sub-forms can derive from PdnBaseForm instead of the normal Form class.
  9. Sounds like you're talking about alpha masking. i.e. Taking the opacity values from one image and apply them to a different image. There's a plugin called Paste Alpha that has this functionality. You can find it here: https://forums.getpaint.net/BoltBaitPluginPack
  10. Please post the diagnostic information found within paint.net. Settings -> Diagnostics -> Copy to clipboard.
  11. Anyone still having this issue? The designer had been working okay for a while, but now the issue is back. 🤔 I'm going to spend some time on this tonight, and see if I can solve it.
  12. Are you saying you want help re-creating these images in Paint.NET?
  13. Visual Studio has a visual hint to indicate when an item will/won't auto complete: Solid Selection = Auto Complete Outline Selection = No Auto Complete (in case of typos, auto complete can be forced with the Tab key) I'm adding a similar hint to CodeLab. I hope this will reduce "surprises" when an item auto completes (or doesn't).
  14. Looks like your photo has "lens distortion". Try using this plugin: https://forums.getpaint.net/topic/7216-camera-lens-distortion-correction/
  15. The templates were made for an older version of Paint.NET during the Visual Studio 2019 timeframe. I would not expect them to work for current versions. Are you sure you need these templates? Plugins can be created in CodeLab most of the time.
  16. That sounds like a scenario that falls into bullet-point one or two. Do you have the steps for when it does that?
  17. Here are a few potential solutions, depending on what you're looking for: - https://forums.getpaint.net/topic/108312-trs-monolithic-3d-text-generator/ - https://forums.getpaint.net/topic/115953-creative-text-pro-v11-by-boltbait-and-welshblue/
  18. The behavior of the Auto Complete box is designed to match the one found in Visual Studio. There are two reasons someone might want to disable it: The person is not accustom to the C# Auto Complete in Visual Studio, and thinks the behavior is annoying (for example, people that normally code in a language other than C#) Bugs in CodeLab that cause the behavior to deviate from the behavior found in Visual Studio. If you encounter bugs like this, please report them with repro steps!
  19. Sorry, it's not possible. Read more here: https://forums.getpaint.net/topic/14566-what-is-and-isnt-possible-when-writing-plugins/
  20. I suggest that you use the Dynamic Draw plugin instead. https://forums.getpaint.net/topic/110673-dynamic-draw/ You don't actually need that file. Does it display an error message when it attempts to create it? What happens?
  21. It's not clear what you're asking. Do want help with achieving a Neon effect? or something else?
  22. In the Nvidia software look for the option to disable the overlay.
×
×
  • Create New...