22 lines
354 B
C#
22 lines
354 B
C#
using System;
|
|
using System.ComponentModel;
|
|
|
|
|
|
namespace BeWo.View
|
|
{
|
|
public partial class ChatProgressBarView
|
|
{
|
|
|
|
ChatView chatView;
|
|
BackgroundWorker worker = null;
|
|
int ubergabe = 0;
|
|
|
|
public ChatProgressBarView(String name)
|
|
{
|
|
InitializeComponent();
|
|
|
|
Title = name;
|
|
}
|
|
}
|
|
}
|