• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    .NET

    Reply
    *Expert Elite*
    Posts: 1,640
    Registered: ‎04-29-2006
    Accepted Solution

    How to change the 'Window command' color

    95 Views, 4 Replies
    04-23-2012 11:00 PM

    Hi,

     

    I need to programmatically change the 'Window command' (Commande de fenêtre in French) color. I didn't find anything in Application.Preferences neither in the registry.

    Has anybody a solution ?

    Thanks.

     

    By 'Window command' I'm talking about the feature comming with A2012 displayed in the upper left corner of model space windows:

    WindowCommand.png

    Gilles Chanteau
    Please use plain text.
    Moderator
    Alexander.Rivilis
    Posts: 1,168
    Registered: ‎04-09-2008

    Re: How to change the 'Window command' color

    04-24-2012 01:12 AM in reply to: _gile

     

    HKEY_CURRENT_USER\Software\Autodesk\AutoCAD\RXX.X\ACAD-YYYY:ZZZ\FixedProfile\Editor Configuration
    
    2D Model viewport control color
    
    Parallel viewport control color
    
    Perspective viewport control color

     

     


    Пожалуйста не забывайте про Утвердить в качестве решения!Утвердить в качестве решения и Give Kudos!Баллы
    Please remember to Accept Solution!Accept as Solution and Give Kudos!Kudos

    Please use plain text.
    *Expert Elite*
    Posts: 1,640
    Registered: ‎04-29-2006

    Re: How to change the 'Window command' color

    04-24-2012 01:23 AM in reply to: Alexander.Rivilis

    Thank you very much Alexander.

    Gilles Chanteau
    Please use plain text.
    Moderator
    Alexander.Rivilis
    Posts: 1,168
    Registered: ‎04-09-2008

    Re: How to change the 'Window command' color

    04-24-2012 01:28 AM in reply to: _gile

    Another way is P/Invoke acedGetCurrentColorsEx3/acedSetCurrentColorsEx3 function:

        /* Viewport control for various contexts */
        DWORD dw2DModelVportControl;
        DWORD dwParallelVportControl;
        DWORD dwPerspectiveVportControl;
    

     


    Пожалуйста не забывайте про Утвердить в качестве решения!Утвердить в качестве решения и Give Kudos!Баллы
    Please remember to Accept Solution!Accept as Solution and Give Kudos!Kudos

    Please use plain text.
    *Expert Elite*
    Posts: 1,640
    Registered: ‎04-29-2006

    Re: How to change the 'Window command' color

    04-24-2012 02:46 AM in reply to: Alexander.Rivilis

    Thanks, I finally solve it P/Invoking acedSetenv.

    Gilles Chanteau
    Please use plain text.