<ui:WndCollectionsBase
x:Class="UI.WndDemaDocuments"
x:TypeArguments="business:DemaDocument"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:business="clr-namespace:BusinessObjects;assembly=BusinessObjects"
xmlns:ui="clr-namespace:UI"
mc:Ignorable="d" Style="{DynamicResource SyncfusionChromelessWindowStyle}"
Title="Documents" Height="620" Width="850" ResizeMode="NoResize" WindowStartupLocation="CenterScreen">
|
<ui:WndCollectionsBase
x:Class="UI.WndDemaDocuments"
x:TypeArguments="business:DemaDocument"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:business="clr-namespace:BusinessObjects;assembly=BusinessObjects"
xmlns:ui="clr-namespace:UI"
mc:Ignorable="d" Style="{DynamicResource SyncfusionChromelessWindowStyle}"
Title="Documents" Height="620" Width="850" ResizeMode="NoResize" WindowStartupLocation="CenterScreen">
|
<sf:ChromelessWindow
x:Class="UI.WndSettings"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:UI"
xmlns:sf="http://schemas.syncfusion.com/wpf"
xmlns:ui="clr-namespace:UI;assembly=UI"
mc:Ignorable="d"
Style="{DynamicResource SyncfusionChromelessWindowStyle}"
Title="{DynamicResource SettingsString}" Height="500" Width="800" ResizeMode="NoResize" WindowStartupLocation="CenterScreen">
|
Thank you very much for your response!
I have sent an email to [email protected] with the following title:
Full Application code for community forum post 157806
I must say that our customare care is really the best out there!!!
Kind Regards,
Luca
public void AddWindow(Window wnd)
{
foreach (Window temp in windows)
{
if (temp == wnd)
return;
}
windows.RemoveAll (x => x == null);
windows.RemoveAll (x => x.IsLoaded == false);
windows.Add (wnd);
// Setting VisualStyle for main window alone as ApplyStylesOnApplication is set.
if (wnd == Application.Current.MainWindow)
SfSkinManager.SetVisualStyle(wnd, CurrentTheme);
}
|