private void LastUsedExposureConfiguration()
        {
            string res = _viewModel.LastUsedExposureConfigurationAsync();

            RunOnUiThread(() => {
                UpdateText("Copied to clipboard:\n" + res);
            });
        }
예제 #2
0
        partial void ENDevLastUsedConfigurationBtn_TouchUpInside(UIButton sender)
        {
            string res = _enDeveloperViewModel.LastUsedExposureConfigurationAsync();

            ENDevOutput.Text = "Copied to clipboard:\n" + res;
        }