Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Setting the Style of menu items / buttons

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Setting the Style of menu items / buttons

    Hello,

    I have an NTMenuItem i set up and then attach to chartcontrol parent.
    All good

    I set the style of this as follows :

    Margin = new System.Windows.Thickness(0),
    Padding = new System.Windows.Thickness(1),
    VerticalAlignment = System.Windows.VerticalAlignment.Center,
    Style = System.Windows.Application.Current.TryFindResource ("MainMenuItem") as System.Windows.Style

    I then add a ToggleButton new System.Windows.Controls.Primitives.ToggleButton();

    And wanting to set this to be the same style as menuitem -
    when skin color is changed in ninja from dark to light i want them to be in synch.

    At moment i am setting the Foreground of the togglebutton

    but tried to set the Style and it seemed to mess up the format and layout.

    Is the problem that i only set the style and not try to set other attributes .. as i still had other parts ie FontFamily FontSize adn Background set.

    wondering how to align the styles and in order to manage different background and skins selected by user

    thanks

    #2
    Hello soulfx,

    Thanks for opening the thread.

    Here's what I have put together when adding my own ToggleButton to an indicator that modifies WPF controls:

    The default style appears to be a generic WPF style. I do not know of an instance where this is used in NinjaTrader 8 and the vanilla style tells me it isn't included internally.

    As there is no style for this, you will have to create your own. You could use properties used from other elements to rebuild a style that can inherit the colors set in a skin.

    As a rough example:
    Code:
    myToggleButtonBackground = myButton.GetValue(System.Windows.Controls.Control.BackgroundProperty) as SolidColorBrush;
    myToggleButtonBackgound can then be set when creating the ToggleButton or when creating a Style.

    Please let me know if I may be of further assistance.
    Last edited by NinjaTrader_Jim; 08-22-2017, 11:43 AM.
    JimNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by jaybedreamin, Today, 05:56 PM
    0 responses
    3 views
    0 likes
    Last Post jaybedreamin  
    Started by DJ888, 04-16-2024, 06:09 PM
    6 responses
    18 views
    0 likes
    Last Post DJ888
    by DJ888
     
    Started by Jon17, Today, 04:33 PM
    0 responses
    1 view
    0 likes
    Last Post Jon17
    by Jon17
     
    Started by Javierw.ok, Today, 04:12 PM
    0 responses
    6 views
    0 likes
    Last Post Javierw.ok  
    Started by timmbbo, Today, 08:59 AM
    2 responses
    10 views
    0 likes
    Last Post bltdavid  
    Working...
    X