From a1d0d834895ce515dda93df1f60616e0a0c7eee5 Mon Sep 17 00:00:00 2001 From: Waldi Date: Wed, 21 Sep 2016 12:32:51 +0200 Subject: [PATCH] kom mit update --- BeWo/View/MiniChatView.xaml.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/BeWo/View/MiniChatView.xaml.cs b/BeWo/View/MiniChatView.xaml.cs index 6460643f0..7e272919c 100644 --- a/BeWo/View/MiniChatView.xaml.cs +++ b/BeWo/View/MiniChatView.xaml.cs @@ -37,21 +37,23 @@ namespace BeWo.View protected long incommingEmpfangOid; protected String namenInfo; + protected String nachname; protected Boolean AppendTrue = false; protected List myListDS = new List(); //################## Variablen zum Zählen aktueller nachricht ########### protected int anzahlDS = 0; //####################################################################### - public MiniChatView(String CLientName, String chat, ChatView view , long oid, ChatType type) + public MiniChatView(String CLientName,String ClientNachname, String chat, ChatView view , long oid, ChatType type) { InitializeComponent(); namenInfo = CLientName; + nachname = ClientNachname; viewChat = view; - rootGroupBox.Header = CLientName; + rootGroupBox.Header = CLientName + " " + ClientNachname ; Minichat.AppendText(chat); incommingString = chat;