C# Class Examples.ExamplesChat.WinRT.ChatAppWinRT

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

Méthodes publiques

Méthode 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 méthode

Add text to the chat history
public AppendLineToChatHistory ( string message ) : void
message string
Résultat void

ChatAppWinRT() public méthode

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
Résultat System

ClearChatHistory() public méthode

Clear the chat history
public ClearChatHistory ( ) : void
Résultat void

ClearInputLine() public méthode

Clear the chat input box
public ClearInputLine ( ) : void
Résultat void

ShowMessage() public méthode

Show a message box to the user
public ShowMessage ( string message ) : void
message string
Résultat void