Jump to: navigation, search

Difference between revisions of "Xamarin XAML"


Line 17: Line 17:
 
In the following, we're going to override the '''Foreground Color''' of the program:
 
In the following, we're going to override the '''Foreground Color''' of the program:
 
* Download the following file: [[File:UBIKThemes.zip]]  
 
* Download the following file: [[File:UBIKThemes.zip]]  
* Unzip it and place it into the '''xaml''' folder inside the ''LocalState''.
+
* Unzip it and place it into the '''xaml''' folder inside the ''LocalState'':
 
[[Image:setup-themes-file.png|frameless|600px|border]]
 
[[Image:setup-themes-file.png|frameless|600px|border]]
 
* Open it with the text editor of your choice and add the following definition:
 
* Open it with the text editor of your choice and add the following definition:

Revision as of 11:17, 3 July 2019

The User Interface of the Xamarin Clients (Android, iOS, new UWP) can be fundamentally customized using custom XAML definitions. This customization process is heavily influenced by the XAML Customization Process on the WinX Client.

Basics

There are predefined XAML templates available that can be overridden. If no override is found, the default template will be used. Overrides need to be placed in the following folder:
[App Installation Path]/LocalState/xaml/ (on Windows)

A list of predefined pages (all starting with UBIK) can be overwritten. The overrides will be loaded during the startup of the app.

Important

Make sure to change the extension to xamlx to achieve the desired loading and overriding behavior!

UBIKThemes.xamlx

One of the most significant files is the UBIKThemes.xamlx, as it is the place to override and extend global definitions. Definitions and changes made here will reflect over all pages and subpages of the app.

Overriding Styles

In the following, we're going to override the Foreground Color of the program:

  • Download the following file: UBIKThemes.zip
  • Unzip it and place it into the xaml folder inside the LocalState:

Setup-themes-file.png

  • Open it with the text editor of your choice and add the following definition:
<Color x:Key="UBIKForegroundThemeColor">blue</Color>
  • Save the changes and restart UBIK. You should see changes successfully implemented:

Ubik-with-blue-foreground.png

On other systems (Android, iOS, etc.), you can use the Import Customizing button in the Settings to import the styles and images (file by file, for now). The app needs to be restarted after the files have been imported.

Custom Pages

Custom pages can be added, just like on the WinX client. Make sure to save the file as xamlx and include all namespace definitions (as attributes of the ContentView tag), otherwise the custom page will not load.

Similar to the UBIKThemes.xamlx file, custom or overridden pages start with a <ContentView> tag containing all namespaces. <ContentView.Resources> takes a ResourceDictionary and contains resources like references to converters. Finally, <ContentView.Content> contains the actual layout content (it's best to start with a Grid). Again, don't forget to add namespaces that you need!

Adding Images

Images can't be loaded with the default Image tag, as the image is on different paths on each operating system.

Therefore, there's a custom FileImage that internally overrides the default Image with two custom parameters:

  • FolderName ...The name of the folder in the local folder. It just seems to work with just one level.
  • FileName ...The name of the file in the said folder.

Make sure to implement the proper namespace as well by adding xmlns:fimage="clr-namespace:UBIK.CPL.Controls;assembly=UBIK.CPL" into the root item's attributes.

Then, the image can be loaded using:
<fimage:FileImage FileName="image.png" FolderName="xaml"/>

This snipped loads the image called image.png located in the xaml folder inside the LocalState.

Differences to WinX

The biggest difference is that developers don't need to copy the whole UBIKThemes.xamlx file just to edit a few styles. Just the changes from the default styles (soon to be available on the [Release Portal]) need to be defined in the overwritten file!

  • Namespace definitions have to be included in all files.
  • Because the same styles are used on different devices (mobile phones, PCs, tablets), responsive user interfaces should be designed.