ThoughtWorks.VisualStudio.CardViewControl.InnerPanel C# (CSharp) Метод

InnerPanel() приватный Метод

Binds CardData.PropertyDefinitions list onto the Properties tab
Adds elements to the Properties tab dynamically for each property in the Properties list. Menus and lists of data values are dynamically created based on the "type_description" of easch Property. Each Property becomes a horizontal StackPanel member of the propertiesPanel in the form. Each StackPanel has a Label/[some element] member pair. The type of [some element] is determined by the type_description from the card itself. The propertiesPanel is a horizontal WrapPanel element so that the StackPanel members wrap automatically flowing from left to right.
private InnerPanel ( CardProperty cardProperty ) : StackPanel
cardProperty CardProperty
Результат System.Windows.Controls.StackPanel
        internal StackPanel InnerPanel(CardProperty cardProperty)
        {
            return _thisCard.Model.InnerPanel(cardProperty, _thisCard, OnButtonChooseCardClick, OnPropertyTextBoxLostFocus,
                OnPropertyComboBoxSelectionChanged, OnButtonNotSetClick);
        }