Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7883111
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T04:26:48+00:00 2026-06-03T04:26:48+00:00

I am creating a chat windows for a game, and I am using WinRT

  • 0

I am creating a chat windows for a game, and I am using WinRT XAML for the UI.

1.What is the most efficient way to design the chat window to be able to be scrollable and handle multicolored text? At the very least each line should be able to be a separate color. At the moment I have something simple such as:

<ScrollViewer x:Name="chatViewScroller" Height="201" Width="475">
    <StackPanel x:Name="chatViewContent" />
</ScrollViewer>

And then as I create new TextBlocks as I need them and add them as children to the chatViewContent. This seems like a very inefficient way of doing things.

2.When I add a new line of text, how do I update the scroller to automatically scroll to the end?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T04:26:49+00:00Added an answer on June 3, 2026 at 4:26 am

    You would be better off using a ListView.

    1. Set the ListView’s ItemsSource property to an ObservableCollection.
    2. Your MessageViewModel would have a Text property as well as Brush.
    3. Set your ListView’s ItemTemplate to the template below

      <DataTemplate>
          <TextBlock Text={Binding Text} Foreground="{Binding Brush}" />
      </DataTemplate>
      
    4. When you add a new item to your collection – it will automatically appear in the ListView.

    5. To scroll it into view call something like this

      await Task.Delay(100);
      MyListView.ScrollIntoView(MyListView.Items[MyListView.Items.Count - 1]);
      

      You need the delay to wait for the ListView to add the new item.

    You can check WinRT XAML Toolkit for example – specifically the ListViewExtensionsTestPage:

        private async void AddItem(object sender, RoutedEventArgs e)
        {
            var vm = (ListViewExtensionsTestViewModel)this.DataContext;
            vm.MyItems.Add(Guid.NewGuid().ToString());
    
            // Need to wait for the ListView to update
            await Task.Delay(100);
    
            SourceListView.ScrollToBottom();
            //SourceListView.ScrollIntoView(SourceListView.Items[SourceListView.Items.Count - 1]);
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am creating a chat application using java sockets programming. I want to launch
I am creating a chat application for Gtalk using the asmack api, and i
Problem : I am creating an iOS chat app using the XMPPFramework and an
For a while, I've been interested in creating a proof-of-concept chat program using C++.
I am creating a chat application using JApplet . I have a TextArea where
I am creating a chat window similar to Skype Chat Window or the IPhone
I am thinking of a simple chat application in Window Phone using Microsoft Push
I have written a Chat application using C#. The project is a separate Windows
I am creating a popup chat window that allows the users to pop the
I'm creating a very simple Java chat program, using the Java TCP sockets. I'm

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.