summaryrefslogtreecommitdiff
path: root/Juick/Controls/MessageList.xaml.cs
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2013-03-29 14:30:06 +0400
committerGravatar Vitaly Takmazov2013-03-29 14:30:06 +0400
commit32fc287a28c24ca980f4fe67ccab178c04cd9159 (patch)
treed1529dc0a60eca2032d55b8a7c68b5687f40ed83 /Juick/Controls/MessageList.xaml.cs
parentd8877eea3c619fe3d0228dbff2693a582e85fc6e (diff)
move message list markup to MessageList usercontrol
Diffstat (limited to 'Juick/Controls/MessageList.xaml.cs')
-rw-r--r--Juick/Controls/MessageList.xaml.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/Juick/Controls/MessageList.xaml.cs b/Juick/Controls/MessageList.xaml.cs
new file mode 100644
index 0000000..0b74705
--- /dev/null
+++ b/Juick/Controls/MessageList.xaml.cs
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Net;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Shapes;
+
+namespace Juick.Controls
+{
+ public partial class MessageList : UserControl
+ {
+ public MessageList()
+ {
+ InitializeComponent();
+ }
+ }
+}