How to add a static element to a gridview?

As you can see in the images above, the GridView already has feeds or elements, but they contain static elements.

enter image description here

In this image, the element that interests me is "See More." I want to implement something like this in my application.

enter image description here

This other application contains two static elements:

  • It all starts
  • Top for free.

No, the question is how to add this element to the GridView? and when you click .. do something (for example, a button or command).

Thanks in advance.

UPDATE: A partner told me: โ€œYou can edit the gridview template and add your controls next to itemspresenterโ€

I donโ€™t have much experience customizing management templates. Could you show me an example of this?

enter image description here

+4
source share
1 answer

You need to add the item to your DataSource.

For example, if your data source is a list of product elements and you take them from a file. First, select the items from the file and fill out your list. Then create an object with specific data (your static data), add it to the list. Thus, you can manage this element and always be in a good place.

+2
source

All Articles