Code Monkey home page Code Monkey logo

Comments (24)

Wagnerp avatar Wagnerp commented on June 12, 2024 2

Where those apps the 4.4 versions or the V8 versions ?

4.x versions from https://github.com/ComponentFactory/Krypton/tree/master/Bin

from standard-toolkit.

Smurf-IV avatar Smurf-IV commented on June 12, 2024 1

I'll get back to you... Does XP support 4.6.2?

No.
Perhaps Check with V5/6 ?
image

from standard-toolkit.

Wagnerp avatar Wagnerp commented on June 12, 2024 1

Going to test with v5.400 (.NET Framework 4)

from standard-toolkit.

Smurf-IV avatar Smurf-IV commented on June 12, 2024 1

@Wagnerp - Thanks for the research

So I see the Aero "Bing Turned off",
But looking at the Outlook clone in Windows 8.1 - That is what i was expecting to happen regardless of the OS.

What I am seeing is when something similar to the "It goes berserk" for some instances of border style being applied to current alpha and windows 10.

So the "Bug Stands"; Make it work like the Win 8.1 outlook clone regardless of OS ! i.e

  • Themed Title bar
  • Visible Borders
  • No Aero
  • No Berserk mode drawing ;-)

from standard-toolkit.

Wagnerp avatar Wagnerp commented on June 12, 2024 1

Re: Last comment, I wonder what would happen if you did this?

    case < 6:
    case 10:
      return false;
   case < 10
       ....

from standard-toolkit.

Smurf-IV avatar Smurf-IV commented on June 12, 2024

More Info:

Changing this does not do Anything !

image

I suspect that it is "Stuck" to be true in the code somewhere !

Contextual Tab colouring in the Form Bar still Works:

image

from standard-toolkit.

Wagnerp avatar Wagnerp commented on June 12, 2024

@Smurf-IV This was a Windows 7 aero thing, so from Windows 8 and up are also affected.

from standard-toolkit.

Smurf-IV avatar Smurf-IV commented on June 12, 2024

The screenshots are from Win 10 22H2 x64, so I expect the theme to be applied to the Form Bar !

from standard-toolkit.

Wagnerp avatar Wagnerp commented on June 12, 2024

The screenshots are from Win 10 22H2 x64, so I expect the theme to be applied to the Form Bar !

This might be a version checking thing. If I remember correctly, if you ran it in XP, the theme would apply to the title bar as well. I need to go back to Phil's original 2017 version & fire up a XP, Vista & 7 VM to check this...

from standard-toolkit.

Wagnerp avatar Wagnerp commented on June 12, 2024

image

Works as expected in XP

from standard-toolkit.

Wagnerp avatar Wagnerp commented on June 12, 2024

Vista...

image

from standard-toolkit.

Wagnerp avatar Wagnerp commented on June 12, 2024

7...

image

A setting might be stuck

from standard-toolkit.

Smurf-IV avatar Smurf-IV commented on June 12, 2024

Where those apps the 4.4 versions or the V8 versions ?

from standard-toolkit.

Smurf-IV avatar Smurf-IV commented on June 12, 2024

So what happens when running the V8 versions on the same Os's as above ?
And What about V4.4 on Win 10 / 11 ?

from standard-toolkit.

Wagnerp avatar Wagnerp commented on June 12, 2024

So what happens when running the V8 versions on the same Os's as above ?

I'll get back to you... Does XP support 4.6.2?

from standard-toolkit.

Wagnerp avatar Wagnerp commented on June 12, 2024

Version 5.400

Windows 11

image

Windows 10

image

Windows 8.1

image

Windows 8

image

Windows 7

image

Windows Vista

image

Windows XP

image

from standard-toolkit.

Wagnerp avatar Wagnerp commented on June 12, 2024

It goes berserk when the classic theme is applied

image

from standard-toolkit.

Wagnerp avatar Wagnerp commented on June 12, 2024

@Smurf-IV This is how Office looks if no Aero is applied

2007

image

2010

image

For 10/11 should it act the same, as I don't think that WinForms supports Mica etc?

from standard-toolkit.

Smurf-IV avatar Smurf-IV commented on June 12, 2024

That's a lot better, but that's not on win 10 or above is it ?

I'm not "Concerned" about the lack of Transparency (i.e. Aero per se) but about the theme being applied to the Form And borders when in ribbon mode for >= Win 8

from standard-toolkit.

Wagnerp avatar Wagnerp commented on June 12, 2024

but that's not on win 10 or above is it ?

No, it's the default if you choose the classic theme on Win Vista & 7. It would work well on 10/11, I think 'Aero' is controlled in the General > DesktopWindowManager class, maybe this:-

 /// <summary>
        /// Is composition currently enabled for the desktop.
        /// </summary>
        public static bool IsCompositionEnabled
        {
            get
            {
                switch (Environment.OSVersion.Version.Major)
                {
                    // Desktop composition is only available on Vista upwards
                    case < 6:
                        return false;
                    case < 10:
                        // Ask the desktop window manager is composition is currently enabled
                        return PI.Dwm.IsCompositionEnabled();
                    //Win 10
                    default:
                        return UserSystemPreferencesService.IsTransparencyEnabled;
                }
            }
        }

from standard-toolkit.

Wagnerp avatar Wagnerp commented on June 12, 2024

@Smurf-IV PR incoming

1249

from standard-toolkit.

Wagnerp avatar Wagnerp commented on June 12, 2024

@Smurf-IV Can we just make AllowFormIntegrate a Win 7/8 & 8.1 thing?

from standard-toolkit.

Smurf-IV avatar Smurf-IV commented on June 12, 2024

@Wagnerp Or remove it, as it does not make sense for a theme not to be applied !

from standard-toolkit.

Wagnerp avatar Wagnerp commented on June 12, 2024

@Wagnerp Or remove it, as it does not make sense for a theme not to be applied !

@Smurf-IV Might raise it as a new request, as I don't know how deep the feature goes

from standard-toolkit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.