private void Linking() { redactorPage = new Redactor(fileManagingPage); redactor = new NavigationPage(redactorPage) { BarBackgroundColor = (Color)Resources["BarBackGroundColor"], BarTextColor = (Color)Resources["BarTextColor"] }; fileManagingPage = new FileManaging(redactorPage); fileManager = new NavigationPage(fileManagingPage) { BarBackgroundColor = (Color)Resources["BarBackGroundColor"], BarTextColor = (Color)Resources["BarTextColor"] }; browser = new NavigationPage(new Browser()) { BarBackgroundColor = (Color)Resources["BarBackGroundColor"], BarTextColor = (Color)Resources["BarTextColor"] }; settings = new NavigationPage(new Settings(redactorPage)) { BarBackgroundColor = (Color)Resources["BarBackGroundColor"], BarTextColor = (Color)Resources["BarTextColor"] }; }
public Settings(Redactor _redactorPage) { InitializeComponent(); languages = new Dictionary <string, string>(); redactorPage = _redactorPage; Linking(); }
public FilePreview(string _fileName, string _fileText, Redactor _redactorPage) { InitializeComponent(); redactorPage = _redactorPage; Linking(); fileName.Text = _fileName; textEditor.Text = _fileText; }
public Camera(Redactor _redactorPage) { redactorPage = _redactorPage; InitializeComponent(); Linking(); ConnectivityCheck(); //проверяет подключение //если подключение есть - появляются кнопки и прочее //если нет - то оставляем толко сообщенеи о том, ///что подключение отсутствует CrossConnectivity.Current.ConnectivityChanged += Current_ConnectivityChanged; }
public FileManaging(Redactor _redactorPage) { redactorPage = _redactorPage; InitializeComponent(); }