Skip to content

Commit 076d53c

Browse files
v18.3.0.47
1 parent 7c84cce commit 076d53c

File tree

211 files changed

+11354
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

211 files changed

+11354
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,4 @@ Syncfusion has no liability for any damage or consequence that may arise by the
8888

8989
* To renew the subscription, click [here](https://www.syncfusion.com/sales/products?utm_source=github&utm_medium=listing) or contact our sales team at <[email protected]>.
9090

91-
<p>Copyright © 2001-2020 Syncfusion, Inc. Updated on 2020-10-14 at precisely 10:52:15 EST.</p>
91+
<p>Copyright © 2001-2020 Syncfusion, Inc. Updated on 2020-11-06 at precisely 12:41:35 EST.</p>

showcase/PowerPoint Viewer/App.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7" />
5+
</startup>
6+
</configuration>

showcase/PowerPoint Viewer/App.xaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<Application
2+
x:Class="syncfusion.powerpointviewer.wpf.app.App"
3+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5+
xmlns:local="clr-namespace:syncfusion.powerpointviewer.wpf.app">
6+
<Application.Resources />
7+
</Application>
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#region Copyright Syncfusion Inc. 2001-2020.
2+
// Copyright Syncfusion Inc. 2001-2020. All rights reserved.
3+
// Use of this code is subject to the terms of our license.
4+
// A copy of the current license can be obtained at any time by e-mailing
5+
// [email protected]. Any infringement will be prosecuted under
6+
// applicable laws.
7+
#endregion
8+
using syncfusion.powerpointviewer.wpf;
9+
using System;
10+
using System.Collections.Generic;
11+
using System.Configuration;
12+
using System.Data;
13+
using System.Linq;
14+
using System.Threading.Tasks;
15+
using System.Windows;
16+
17+
namespace syncfusion.powerpointviewer.wpf.app
18+
{
19+
/// <summary>
20+
/// Interaction logic for App.xaml
21+
/// </summary>
22+
public partial class App : Application
23+
{
24+
protected override void OnStartup(StartupEventArgs e)
25+
{
26+
var window = Activator.CreateInstance(typeof(PowerPointViewerDemo)) as Window;
27+
window.Show();
28+
base.OnStartup(e);
29+
}
30+
31+
}
32+
}
634 Bytes
Loading
627 Bytes
Loading
29.8 KB
Loading
Binary file not shown.
887 Bytes
Loading
270 Bytes
Loading

0 commit comments

Comments
 (0)