diff options
Diffstat (limited to 'Decompiler/Gestor.Application.Componentes/DialogGrafico.cs')
| -rw-r--r-- | Decompiler/Gestor.Application.Componentes/DialogGrafico.cs | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/Decompiler/Gestor.Application.Componentes/DialogGrafico.cs b/Decompiler/Gestor.Application.Componentes/DialogGrafico.cs new file mode 100644 index 0000000..7543980 --- /dev/null +++ b/Decompiler/Gestor.Application.Componentes/DialogGrafico.cs @@ -0,0 +1,46 @@ +using System; +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Markup; + +namespace Gestor.Application.Componentes; + +public class DialogGrafico : UserControl, IComponentConnector +{ + private bool _contentLoaded; + + public DialogGrafico() + { + InitializeComponent(); + } + + [DebuggerNonUserCode] + [GeneratedCode("PresentationBuildTasks", "4.0.0.0")] + public void InitializeComponent() + { + if (!_contentLoaded) + { + _contentLoaded = true; + Uri uri = new Uri("/Gestor.Application;component/componentes/dialoggrafico.xaml", UriKind.Relative); + Application.LoadComponent((object)this, uri); + } + } + + [DebuggerNonUserCode] + [GeneratedCode("PresentationBuildTasks", "4.0.0.0")] + internal Delegate _CreateDelegate(Type delegateType, string handler) + { + return Delegate.CreateDelegate(delegateType, this, handler); + } + + [DebuggerNonUserCode] + [GeneratedCode("PresentationBuildTasks", "4.0.0.0")] + [EditorBrowsable(EditorBrowsableState.Never)] + void IComponentConnector.Connect(int connectionId, object target) + { + _contentLoaded = true; + } +} |