locked
How to show list on listbox following category??? RRS feed

  • Question

  • Show list on listbox following category as a picture???
    Tuesday, May 5, 2015 1:52 AM

Answers

  • Can you please explain more clearly what you are trying to do and what you need help with?
    Tuesday, May 5, 2015 2:10 AM
    Moderator
  • Can you please explain more clearly what you are trying to do and what you need help with?

    There are many ways to draw a line. We need to know what your app is doing to provide help that is useful in that context.

    Tuesday, May 5, 2015 10:24 PM
    Moderator

All replies

  • Can you please explain more clearly what you are trying to do and what you need help with?
    Tuesday, May 5, 2015 2:10 AM
    Moderator
  • There are a line beween "Now playing" and "New playlit". how to do that?
    Tuesday, May 5, 2015 3:44 AM
  • Can you please explain more clearly what you are trying to do and what you need help with?

    There are many ways to draw a line. We need to know what your app is doing to provide help that is useful in that context.

    Tuesday, May 5, 2015 10:24 PM
    Moderator
  • Instead I must 2 listbox for 2 categories.

    So, I want seperate it make 1 listbox for 2 categories that will be seperate by to draw a line.

    E.g:

    category: Music
       Artists
       Contries
       ........
    
    ___________________
    category: Movie
       Actor
       Contries
      .........
    
    ___________________



    Wednesday, May 6, 2015 1:33 AM
  • If you just want two ListBoxes with a Line between them then create two ListBoxes with a Line between them:

    <StackPanel>
       <ListBox/>
       <Line  X2="480" Stroke="{StaticResource PhoneAccentBrush}"/>
       <ListBox/>
    </StackPanel>
    If that's not what you're looking for then please provide more details.
    Thursday, May 7, 2015 12:11 AM
    Moderator