Pedrum
Pedrum

Reputation: 644

how to create a Visual studio 2012 chat box control?

I am making an app using visual studio 2012, It can be both in metro style or windows form I just need a control that behaves like the place where your message appears once you send it... like the one in the Message app on windows 8 and like iphone...

Upvotes: 1

Views: 751

Answers (2)

jessehouwing
jessehouwing

Reputation: 114857

A standard WPF Listbox with some customization to the list items is all it takes. Like it's done in this question.

No need for any 3rd party control.

Upvotes: 2

PatrickPirker
PatrickPirker

Reputation: 359

There are three way´s:

  1. One is using the Rich-Textbox->more difficult, but looks better
  2. Or the normal text box
  3. Or making your own text box-element

Upvotes: 0

Related Questions