Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Loading.cs
1using System;
2using System.Windows.Media;
3using System.Xml;
4
6{
10 public class Loading : TreeNode
11 {
12 public Loading(TreeNode Parent)
13 : base(Parent)
14 {
15 }
16
17 public override string Key => string.Empty;
18 public override string ToolTip => "Items are being loaded.";
19 public override string TypeName => string.Empty;
20 public override bool CanAddChildren => false;
21 public override bool CanEdit => false;
22 public override bool CanDelete => false;
23 public override bool CanRecycle => false;
24 public override ImageSource ImageResource => XmppAccountNode.hourglass;
25
26 public override string Header
27 {
28 get
29 {
30 this.LoadSiblings();
31 return "Loading...";
32 }
33 }
34
35 public override void Write(XmlWriter Output)
36 {
37 // Don't output.
38 }
39 }
40}
Represents a data source in a concentrator.
Definition: Loading.cs:11
override void Write(XmlWriter Output)
Saves the object to a file.
Definition: Loading.cs:35
Abstract base class for tree nodes in the connection view.
Definition: TreeNode.cs:24
virtual void LoadSiblings()
Method is called to make sure siblings are loaded.
Definition: TreeNode.cs:322
TreeNode Parent
Parent node. May be null if a root node.
Definition: TreeNode.cs:107
Class representing a normal XMPP account.