Skip to content

Instantly share code, notes, and snippets.

@filipoff2
Last active November 15, 2019 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save filipoff2/59855290f0bd7e7bd280634145d476c6 to your computer and use it in GitHub Desktop.
Save filipoff2/59855290f0bd7e7bd280634145d476c6 to your computer and use it in GitHub Desktop.
Demo Locator
public static class DesignDataLoacator
{
public static MainPageViewModel MainPageViewModeDE
{
get { return new MainPageViewModel(null) { Title = "Deutsch", ButtonText = "Rechnungen" }; }
}
public static MainPageViewModel MainPageViewModePL
{
get { return new MainPageViewModel(null) { Title = "Polski", ButtonText = "Faktury" }; }
}
public static MainPageViewModel MainPageViewModeEL
{
get { return new MainPageViewModel(null) { Title = "ελληνικά", ButtonText = "τιμολόγια" }; }
}
public static MainPageViewModel MainPageViewModeEn
{
get { return new MainPageViewModel(null) { Title = "English", ButtonText = "Invoices" }; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment