WinForms/WPF - Add Debug/Release build to Window Title

This commit is contained in:
Alex Maitland
2021-09-21 09:27:03 +10:00
parent bc856b0297
commit 94c06d6797
2 changed files with 14 additions and 3 deletions

View File

@@ -6,9 +6,14 @@ namespace CefSharp.MinimalExample.Wpf.Converter
{
public class TitleConverter : IValueConverter
{
#if DEBUG
private const string Build = "Debug";
#else
private const string Build = "Release";
#endif
object IValueConverter.Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
return "CefSharp.MinimalExample.Wpf - " + (value ?? "No Title Specified");
return "CefSharp.MinimalExample.Wpf (" + Build + ") - " + (value ?? "No Title Specified");
}
object IValueConverter.ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)