Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ClientUserManagement/HeuristicLab.Clients.Access/3.3/ClientViews/ClientView.cs @ 7536

Last change on this file since 7536 was 7536, checked in by ascheibe, 12 years ago

#1648 added client registration ui

File size: 2.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using HeuristicLab.Core.Views;
23using HeuristicLab.MainForm;
24
25namespace HeuristicLab.Clients.Access {
26  [View("Client View")]
27  [Content(typeof(Client), true)]
28  public partial class ClientView : ItemView {
29    public new Client Content {
30      get { return (Client)base.Content; }
31      set { base.Content = value; }
32    }
33
34    public ClientView() {
35      InitializeComponent();
36    }
37
38    protected override void OnContentChanged() {
39      base.OnContentChanged();
40
41      if (Content == null) {
42        txtClientConfiguration.Text = string.Empty;
43        txtClientType.Text = string.Empty;
44        txtDescription.Text = string.Empty;
45        txtMemory.Text = string.Empty;
46        txtName.Text = string.Empty;
47        txtNumberOfCores.Text = string.Empty;
48        txtPerformanceValue.Text = string.Empty;
49        txtProcessor.Text = string.Empty;
50        txtTimestamp.Text = string.Empty;
51        txtVersion.Text = string.Empty;
52        txtId.Text = string.Empty;
53        txtOS.Text = string.Empty;
54      } else {
55        if (Content.ClientConfiguration != null) {
56          txtClientConfiguration.Text = Content.ClientConfiguration.Description; //??
57        }
58        if (Content.ClientType != null) {
59          txtClientType.Text = Content.ClientType.Name;
60        }
61        if (Content.OperatingSystem != null) {
62          txtOS.Text = Content.OperatingSystem.Name;
63        }
64        txtDescription.Text = Content.Description;
65        txtMemory.Text = Content.MemorySize.ToString();
66        txtName.Text = Content.Name;
67        txtNumberOfCores.Text = Content.NumberOfCores.ToString();
68        txtPerformanceValue.Text = Content.PerformanceValue.ToString();
69        txtProcessor.Text = Content.ProcessorType;
70        txtTimestamp.Text = Content.Timestamp.ToShortDateString();
71        txtVersion.Text = Content.HeuristicLabVersion;
72        txtId.Text = Content.Id.ToString();
73      }
74    }
75  }
76}
Note: See TracBrowser for help on using the repository browser.