CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Sep 2007
    Posts
    405

    What control can add pictures and text horizontally ?

    Do you know what control can add photos and text horizontally as an attached file, when clicking on add button will put the image into the box, if the cell does not have image, insert the image in the horizontal box, if any. Horizontal cell is inserted into the new cell line. You see the attached image file.

  2. #2
    Join Date
    Jul 2001
    Location
    Sunny South Africa
    Posts
    11,283

    Re: What control can add pictures and text horizontally ?

    In WPF there is a Grid control which can do what you need, with a bit of logic. Otherwise you'd have to create your own grid of controls through code on a Windows Form

  3. #3
    Join Date
    Sep 2007
    Posts
    405

    Re: What control can add pictures and text horizontally ?

    I do not know how to use WPF, in Visual Studio or devexpress have any other control ?

  4. #4
    Join Date
    Apr 2017
    Posts
    9

    Re: What control can add pictures and text horizontally ?

    There is no ready made controls, I recommend that create a User control ( Ex: Buttons or List view ) and write the code according to our requirement.

  5. #5
    Join Date
    Oct 2015
    Posts
    26

    Re: What control can add pictures and text horizontally ?

    I would use a Grid. This is what they are made for

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured