Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3722644
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T05:58:46+00:00 2026-05-19T05:58:46+00:00

i’ve been banging my head on this for the last hours… I have a

  • 0

i’ve been banging my head on this for the last hours…

I have a User Control called “DayItem“, and i want to show it 48 times in another UserControl called “DayPanel“.
Let me mention this is done in MVVM style, but i’m only experiencing, and a straight way would by fine for an answer.

I have an ObservableCollection<DayItem> in the DayPanel model, and in the Xaml there’s an <ItemsPresenter />.

if i do

this.ItemsSource = DayItems;

everything show up fine.
but, i wanna be able to use those DayItems in the UI like a list… to support multi-select etc.

so i tried using a ContentControl, and set it’s content to the ObservableCollection.
but it just shows the ObservableCollection object’s ToString text.
so i guess i need a DataTemplete there…
but why do i need a DataTemple to show a Control?
it’s already styled in it’s own Xaml, i don’t wanna repeat it’s styling again.

or maybe i’m totally wrong, anyway i need help 😡

Edit:

I got this to work, saying what DataType wasn’t necessary or even possible.
and in the code behind i told the listbox, that it’s ItemSource was the ObservableCollection.

now i’ve ran into other problems… ListBox related…
There are Gaps between each control in the ListBox, which messes up the layout
and also i need to figure out a way to select multiple items by dragging…

thanks for the help so fat

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T05:58:47+00:00Added an answer on May 19, 2026 at 5:58 am

    First, you need a view model for you DayItem user control. Lets call it DayItemViewModel. Also I suppose you DayPanel also has a view model called something like DayPanelViewModel. Then, you DayPanelViewModel would expose a collection of DayItemViewModel instances:

    public class DayPanelViewModel
    {
        public ObservableCollection<DayItemViewModel> DayItems { get; set; }
    }
    

    Then, in your DayPanel.xaml:

    <UserControl x:Class="DayPanel"
                 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
        <UserControl.Resources>
            <DataTemplate x:Key="DayItemTemplate"
                          DataType="{x:Type my:DayItemViewModel}">
                <my:DayItem />
            </DataTemplate>
        </UserControl.Resources>
        <Grid>
            <ListBox ItemsSource="{Binding DayItems}" 
                     ItemTemplate="{StaticResource DayItemTemplate}" />
        </Grid>
    </UserControl>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a jquery bug and I've been looking for hours now, I can't
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
this is what i have right now Drawing an RSS feed into the php,
I have this code to decode numeric html entities to the UTF8 equivalent character.
I have a French site that I want to parse, but am running into
This could be a duplicate question, but I have no idea what search terms
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
I want to show the soap response to UIWebview.. my soap response is, <p><img
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.