public static void AddIntoItems(StackPanel stack_items, SenVM_Deprecated sen, bool isNew)
        {
            var item_line = MyStacks.GetItemLine(stack_items, isNew);

            item_line.Margin = new Thickness(0, 1, 2, 0);
            item_line.Name   = "line_" + sen.Id;
            AddIntoThis(sen, item_line);
        }
Пример #2
0
        public static void AddIntoItems(StackPanel stack_items, VocVM Voc, bool isNew)
        {
            var item_line = MyStacks.GetItemLine(stack_items, isNew);

            AddIntoThis(Voc, item_line);
        }
Пример #3
0
        public static void AddIntoItems(StackPanel stack_items, SpellVM Spell, bool isNew)
        {
            var item_line = MyStacks.GetItemLine(stack_items, isNew);

            AddIntoThis(Spell, item_line);
        }
Пример #4
0
        public static void AddIntoItems(StackPanel stack_items, PronVM Pron, bool isNew)
        {
            var item_line = MyStacks.GetItemLine(stack_items, isNew);

            AddIntoThis(Pron, item_line);
        }