7 changed files with 95 additions and 14 deletions
@ -0,0 +1,17 @@ |
|||||||
|
<xctk:WizardPage x:Class="ICSharpCode.Reporting.Addin.ReportWizard.Dialog.PullModelPage" |
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||||
|
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit" |
||||||
|
xmlns:System="clr-namespace:System;assembly=mscorlib" |
||||||
|
xmlns:sdr="clr-namespace:ICSharpCode.Reporting.Globals;assembly=ICSharpCode.Reporting" |
||||||
|
CanSelectPreviousPage="true" |
||||||
|
CanSelectNextPage="false" |
||||||
|
CanCancel="true" |
||||||
|
CanFinish="false" |
||||||
|
PageType="Interior" |
||||||
|
> |
||||||
|
<Grid> |
||||||
|
<TextBlock Text="Pull Model not available at the moment" FontSize="16" |
||||||
|
HorizontalAlignment="Center" VerticalAlignment="Center"></TextBlock> |
||||||
|
</Grid> |
||||||
|
</xctk:WizardPage> |
@ -0,0 +1,44 @@ |
|||||||
|
/* |
||||||
|
* Created by SharpDevelop. |
||||||
|
* User: Peter Forstmeier |
||||||
|
* Date: 16.08.2014 |
||||||
|
* Time: 16:43 |
||||||
|
* |
||||||
|
* To change this template use Tools | Options | Coding | Edit Standard Headers. |
||||||
|
*/ |
||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.Text; |
||||||
|
using System.Windows; |
||||||
|
using System.Windows.Controls; |
||||||
|
using System.Windows.Data; |
||||||
|
using System.Windows.Documents; |
||||||
|
using System.Windows.Input; |
||||||
|
using System.Windows.Media; |
||||||
|
using Xceed.Wpf.Toolkit; |
||||||
|
|
||||||
|
namespace ICSharpCode.Reporting.Addin.ReportWizard.Dialog |
||||||
|
{ |
||||||
|
/// <summary>
|
||||||
|
/// Interaction logic for PullModelPage.xaml
|
||||||
|
/// </summary>
|
||||||
|
public partial class PullModelPage : WizardPage,IHasContext |
||||||
|
{ |
||||||
|
public PullModelPage() |
||||||
|
{ |
||||||
|
InitializeComponent(); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
#region IHasContext implementation
|
||||||
|
public ICSharpCode.Reporting.Addin.ReportWizard.ViewModels.IWizardContext Context { |
||||||
|
get { |
||||||
|
throw new NotImplementedException(); |
||||||
|
} |
||||||
|
} |
||||||
|
public WizardPageType ReportPageType { |
||||||
|
get { return WizardPageType.PullModelPage;} |
||||||
|
} |
||||||
|
#endregion
|
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue