コード例 #1
0
 public ReadPage(ClientOPC _client)
 {
     InitializeComponent();
     client = _client;
     DisplayReads();
     SubscribePage();
 }
コード例 #2
0
 public LoginPopupPage(ClientOPC _client, int _index, SessionView _sessionView)
 {
     CloseWhenBackgroundIsClicked = true;
     index       = _index;
     client      = _client;
     sessionView = _sessionView;
     InitializeComponent();
 }
コード例 #3
0
 public SessionPage(ClientOPC _client, SessionView _sessionView)
 {
     InitializeComponent();
     client      = _client;
     sessionView = _sessionView;
     DisplaySession();
     SubscribePage();
 }
コード例 #4
0
 public EndpointsPage(ListEndpoint _list, ClientOPC _client)
 {
     InitializeComponent();
     BindingContext = endpoints;
     storedList     = _list;
     client         = _client;
     displayEndpoints();
 }
コード例 #5
0
        public ReadPage(ClientOPC _client, string _nodeId) //Node Id Format: ns=1;i=1003
        {
            InitializeComponent();

            string[] tmp     = _nodeId.Split(';');
            string   nSIndex = tmp[0].Substring(3);
            string   idNode  = tmp[1].Substring(2);

            NodeID.Text        = idNode;
            NodeNamespace.Text = nSIndex;

            client = _client;
            DisplayReads();
            SubscribePage();
        }
コード例 #6
0
 public ReadPage(ClientOPC _client, ListNode node)
 {
     NodeID.Text = node.Id;
     SubscribePage();
 }