C# Class Examples.ExamplesChat.WinRT.ChatAppWinRT

All NetworkComms.Net implementation can be found here and in ChatAppBase
Inheritance: ChatAppBase
Show file Open project: MarcFletcher/NetworkComms.Net Class Usage Examples

Public Methods

Method Description
AppendLineToChatHistory ( string message ) : void

Add text to the chat history

ChatAppWinRT ( TextBox currentMessageInputBox, TextBlock chatHistory, ScrollViewer chatHistoryScroller ) : System

Constructor for the WP8 chat app.

ClearChatHistory ( ) : void

Clear the chat history

ClearInputLine ( ) : void

Clear the chat input box

ShowMessage ( string message ) : void

Show a message box to the user

Method Details

AppendLineToChatHistory() public method

Add text to the chat history
public AppendLineToChatHistory ( string message ) : void
message string
return void

ChatAppWinRT() public method

Constructor for the WP8 chat app.
public ChatAppWinRT ( TextBox currentMessageInputBox, TextBlock chatHistory, ScrollViewer chatHistoryScroller ) : System
currentMessageInputBox Windows.UI.Xaml.Controls.TextBox
chatHistory Windows.UI.Xaml.Controls.TextBlock
chatHistoryScroller Windows.UI.Xaml.Controls.ScrollViewer
return System

ClearChatHistory() public method

Clear the chat history
public ClearChatHistory ( ) : void
return void

ClearInputLine() public method

Clear the chat input box
public ClearInputLine ( ) : void
return void

ShowMessage() public method

Show a message box to the user
public ShowMessage ( string message ) : void
message string
return void