Windows Phone Dev. Adding items to Pan-Page doesn't work - forms

I have
<!--Panorama item one-->
<controls:PanoramaItem Header="Search">
</controls:PanoramaItem>
and what I simply want to do, is dropping some TextBoxes etc. into it.
But when I drop a Textbox (while the panorama item one-grid is selected), visual studio adds these form items outside the panorama pages, somewhere at the bottom of the XAML.
How can I add forms into the panorama item I decided them for?

A grid. I needed to add a grid, to store all my elements inside.

Related

Remove selection from ListView element in UI Toolkit

When I drag the elements inside the ListView component, in the new UI Toolkit system, the element selected get white background but I want it to be transparent.
I just want to drag the elements like a list but without changing the elements background color.
I've tried a lot of things with the new API but could not figure it out.
I tried change the element background, disable listview general properties, research in google but nothing
I would like if you guys can help. Thanks!

How to implement backpack UI in Unity

I want to make a backpack UI that can dynamically add and delete items like a menu, but every item in it is a picture (not a text)
I found many tutorials but all of them are panels with slots that need I to set their positions previously. I wonder if there is a better way to make it more easily.
I think the best way is to use a Vertical Layout Group:
https://docs.unity3d.com/Packages/com.unity.ugui#1.0/manual/script-VerticalLayoutGroup.html
Obviously for adding and deleting in player, you have to create buttons with relative scripts.

ExtJS 6.2 add components dynamically using drag and drop

I need to implement drag and drop form in ExtJS 6.2 that adds components dynamically to a from.
I have a (grid)list on left side that contains type of components as texts, for example that list contains:
doctors (will be combobox)
units (will be combobox) "
check some constraints" in my case (will be checkbox) as texts.
I want to add that component (a combobox or checkbox) to right side of my panel when I click or drag one of them.
Each component can be added more than one. Can anyone show me the way or give me an example?
I come across to grid to grid or div drag and drop examples.
Thanks.

SAP UI5 : MultiCombobox selected values should appear in vertical fashion

For my multicombobox, I need all the selected values to appear vertically rather than horizontally as it is hard to see all the selected values at once if there are more than 3-4 selections.
With one of the latest releases of UI5, a "n-more" feature was introduced in the MultiComboBox. It could be seen here. Add several items from the MCB and focus out.
I guess that this should be fine for you to see the selection no matter how much items you have at all. On the mobile view you can toggle the button next to the input field in the dialog in order to see all selected items.

Adding the appropriate elements in SectionStackSections

I'm trying to build a similar menu like in http://www.gwt-ext.com/demo/#menuButton. But i am using the SmartGWT instead of GWT-Ext and GWT Designer in Eclipse. I have built the SectionStack and add to it 3 sections. My problem is that i do not know what components to add in each section to get the selected items as in the example 'Showcase Explorer' menu of the link. Like the example i want to fill each section with several text lines but if i add just Label components then there are not selectable like in the example (when you view the menu in accordion mode).
Why dont you use http://www.smartclient.com/smartgwt/showcase/#menus_category_treebinding this menu instead?