Maßnahme und Ziele per Popup bearbeiten Maßnahme und Ziele Notiz optional einblenden Das selbe auch bei Hilfeplan -> Ziele (ohne Icf import) ReportTemplate hinzugefügt (Tabelle, Hibernate, Enity, Mapper, DC) Listbox Select hinzugefügt, dient dem generischen Auswählen eines object aus einer list<object> per control
49 lines
1.3 KiB
C#
49 lines
1.3 KiB
C#
using DevExpress.Xpf.Core;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
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 System.Windows.Media.Imaging;
|
|
using System.Windows.Navigation;
|
|
using System.Windows.Shapes;
|
|
|
|
namespace BeWo.View.Detail.Report
|
|
{
|
|
/// <summary>
|
|
/// Interaktionslogik für TestEMailControl.xaml
|
|
/// </summary>
|
|
public partial class FlexibleReportLayoutSaveControl : UserControl
|
|
{
|
|
public event Action CancelButtonClicked;
|
|
public event Action SaveButtonClicked;
|
|
|
|
public FlexibleReportLayoutSaveControl()
|
|
{
|
|
InitializeComponent();
|
|
ThemeManager.SetTheme(BeWoApp.CurrentBeWo.MainWindow, Theme.Office2010Black);
|
|
}
|
|
|
|
public string LayoutName
|
|
{
|
|
get { return TextLayoutNameNew.Text; }
|
|
set { TextLayoutNameNew.Text = value; }
|
|
}
|
|
|
|
private void SaveButton_OnClick(object sender, RoutedEventArgs e)
|
|
{
|
|
SaveButtonClicked?.Invoke();
|
|
}
|
|
|
|
private void CancelButton_OnClick(object sender, RoutedEventArgs e)
|
|
{
|
|
CancelButtonClicked?.Invoke();
|
|
}
|
|
}
|
|
}
|