private void VariablesListBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            var startupVariableData = new TinkerPageStartupVariableData();
            startupVariableData.ParticleDevice = particleDevice;
            startupVariableData.SelectedItem = (KeyValuePair<string,string>)e.AddedItems[0];

            Frame.Navigate(typeof(VariablesPage), startupVariableData);
        }
Exemplo n.º 2
0
        private void VariablesListBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            var startupVariableData = new TinkerPageStartupVariableData();

            startupVariableData.ParticleDevice = particleDevice;
            startupVariableData.SelectedItem   = (KeyValuePair <string, string>)e.AddedItems[0];

            Frame.Navigate(typeof(VariablesPage), startupVariableData);
        }