hi,
Can anyone please explain how to change login logo in smart client.
hi,
Can anyone please explain how to change login logo in smart client.
Hi,
I found the attached document which explains the branding options in FSM .
As per the document:
Desktop Client Login Screen – The logo on the login screen can be changed by creating a GlobalThemes.xaml file from one of the default themes and adding the LoginLogoImage key with a valid path to the desired image:
<BitmapImage x:Key="LoginLogoImage" UriSource="file://MyFSMServer/Themes/MyCompanyLogo.png" />
Thanks,
Kasun
You are able to change the login logo through GlobalThemexaml file. This is a server file located at Local Disc>inetpub>wwwroot. And change the parameter for login image. An example given below for a logo used for testing the desktop client login image.
How to do:
Go to server machine,
C:\inetpub\wwwroot\DEV5\ClientDev
Usually there are globalthem.xaml file. Open file and edit it to insert
<ResourceDictionary xmlns:System="clr-namespace:System;assembly=mscorlib" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<!-- New UX Refresh Skin Resources -->
<SolidColorBrush x:Key="PrimaryColor" Color="Green"/>
<SolidColorBrush x:Key="SecondaryColor" Color="Green"/>
<BitmapImage x:Key="LoginLogoImage" UriSource="https://MyFSMServer/Client/Themes/Firedog/FireDog_Splash.png" />
</ResourceDictionary>
Image destination should be what you put image to. The http:// or file:// path specified in GlobalTheme.xaml must be a valid fully-qualified path to the desired login image. Then, uninstall application, reinstall and see. Login image should have been changed.
And if you want this to be visible under file > UI themes in smart client, you would upload this custom theme xaml files to the path denoted by the PATH_TO_CUSTOM_THEMES app param.
Even if it is for cloud installation, the same config.Since the globalthem.xaml is a client-side file, there Is no difference for cloud. The same file can be uploaded if you need to change global theme. Since only the FSM server is running on Azure. You can the server endpoint from your local client.
Hi
Thank you very much for your response, it helped a lot.
Best Regards
Ramya
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.