diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-07-03 12:45:51 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-07-03 12:45:51 +0300 |
| commit | dff820daf6850f2c1403d6601d2091b8c3bfc730 (patch) | |
| tree | 20581f5ab77222791c7944a62aaab3c96bce94b2 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Logging/Views/EmbeddedLogDetailsView.xaml.cs | |
| parent | c9d3c1a7408f6f7a4814c1a8f5cf58a2d13e1694 (diff) | |
| download | Tango-dff820daf6850f2c1403d6601d2091b8c3bfc730.tar.gz Tango-dff820daf6850f2c1403d6601d2091b8c3bfc730.zip | |
Implemented application & embedded logs details views.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Logging/Views/EmbeddedLogDetailsView.xaml.cs')
| -rw-r--r-- | Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Logging/Views/EmbeddedLogDetailsView.xaml.cs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Logging/Views/EmbeddedLogDetailsView.xaml.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Logging/Views/EmbeddedLogDetailsView.xaml.cs new file mode 100644 index 000000000..28bb8e758 --- /dev/null +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Logging/Views/EmbeddedLogDetailsView.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace Tango.MachineStudio.Logging.Views +{ + /// <summary> + /// Interaction logic for EventDetailsView.xaml + /// </summary> + public partial class EmbeddedLogDetailsView : UserControl + { + public EmbeddedLogDetailsView() + { + InitializeComponent(); + } + } +} |
