├── .gitattributes
├── .gitignore
├── 1.1.ps1
├── Convert-DSCSyntaxToFields.ps1
├── LICENSE
├── README.md
├── Start-DSCDesigner.ps1
├── XAML
├── .vs
│ └── FoxDeploy DSC Designer
│ │ ├── v14
│ │ └── .suo
│ │ └── v15
│ │ └── .suo
├── FoxDeploy DSC Designer.sln
└── FoxDeployDSCdesigner
│ ├── 0.1MainWindow.xaml
│ ├── 0.1MainWindow.xaml.cs
│ ├── 0.2MainWindow.xaml
│ ├── 0.2MainWindow.xaml.cs
│ ├── 0.3.backup
│ ├── 0.3MainWindow.xaml
│ ├── 0.3MainWindow.xaml.cs
│ ├── 0.5MainWindow.xaml
│ ├── 0.5MainWindow.xaml.cs
│ ├── App.config
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── AutoLoadingDev.xaml
│ ├── AutoLoadingDev.xaml.cs
│ ├── FoxDeploy DSC Designer.csproj
│ ├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
│ ├── TabDesigner.xaml
│ ├── TabDesigner.xaml.cs
│ ├── bin
│ └── Debug
│ │ ├── FoxDeployDSC_Designer.exe.config
│ │ ├── FoxDeployDSC_Designer.vshost.exe
│ │ ├── FoxDeployDSC_Designer.vshost.exe.config
│ │ ├── FoxDeployDSC_Designer.vshost.exe.manifest
│ │ ├── Microsoft.VisualStudio.HostingProcess.Utilities.Sync.dll
│ │ ├── Microsoft.VisualStudio.HostingProcess.Utilities.dll
│ │ ├── WpfApplication1.exe.config
│ │ ├── WpfApplication1.vshost.exe
│ │ ├── WpfApplication1.vshost.exe.config
│ │ └── WpfApplication1.vshost.exe.manifest
│ └── obj
│ └── Debug
│ ├── 0.1MainWindow.g.i.cs
│ ├── 0.2MainWindow.g.i.cs
│ ├── 0.3.baml
│ ├── 0.3.g.cs
│ ├── 0.3.g.i.cs
│ ├── 0.3MainWindow.g.i.cs
│ ├── 0.4MainWindow.g.i.cs
│ ├── 0.5MainWindow.g.i.cs
│ ├── App.g.cs
│ ├── App.g.i.cs
│ ├── AutoLoadingDev.g.i.cs
│ ├── DesignTimeResolveAssemblyReferences.cache
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── FoxDeploy DSC Designer.csproj.FileListAbsolute.txt
│ ├── FoxDeployDSC_Designer_MarkupCompile.i.cache
│ ├── FoxDeployDSC_Designer_MarkupCompile.i.lref
│ ├── MainWindow.g.cs
│ ├── MainWindow.g.i.cs
│ ├── TabDesigner.g.i.cs
│ ├── TempPE
│ └── Properties.Resources.Designer.cs.dll
│ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ ├── Window1.baml
│ ├── Window1.g.cs
│ ├── Window1.g.i.cs
│ ├── Window2.g.cs
│ ├── Window2.g.i.cs
│ ├── Window3.g.i.cs
│ ├── WpfApplication1.csproj.FileListAbsolute.txt
│ ├── WpfApplication1.csprojResolveAssemblyReference.cache
│ ├── WpfApplication1_MarkupCompile.cache
│ ├── WpfApplication1_MarkupCompile.i.cache
│ ├── WpfApplication1_MarkupCompile.lref
│ ├── beta.baml
│ ├── beta.g.cs
│ └── beta.g.i.cs
└── history
├── 0.1.ps1
├── 0.2.ps1
├── 0.3.ps1
├── 0.4.ps1
├── 0.5.ps1
├── 0.6.ps1
├── 0.7.ps1
└── sample valid DSC config.ps1
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
4 | # Custom for Visual Studio
5 | *.cs diff=csharp
6 |
7 | # Standard to msysgit
8 | *.doc diff=astextplain
9 | *.DOC diff=astextplain
10 | *.docx diff=astextplain
11 | *.DOCX diff=astextplain
12 | *.dot diff=astextplain
13 | *.DOT diff=astextplain
14 | *.pdf diff=astextplain
15 | *.PDF diff=astextplain
16 | *.rtf diff=astextplain
17 | *.RTF diff=astextplain
18 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Windows image file caches
2 | Thumbs.db
3 | ehthumbs.db
4 |
5 | # Folder config file
6 | Desktop.ini
7 |
8 | # Recycle Bin used on file shares
9 | $RECYCLE.BIN/
10 |
11 | # Windows Installer files
12 | *.cab
13 | *.msi
14 | *.msm
15 | *.msp
16 |
17 | # Windows shortcuts
18 | *.lnk
19 |
20 | # =========================
21 | # Operating System Files
22 | # =========================
23 |
24 | # OSX
25 | # =========================
26 |
27 | .DS_Store
28 | .AppleDouble
29 | .LSOverride
30 |
31 | # Thumbnails
32 | ._*
33 |
34 | # Files that might appear in the root of a volume
35 | .DocumentRevisions-V100
36 | .fseventsd
37 | .Spotlight-V100
38 | .TemporaryItems
39 | .Trashes
40 | .VolumeIcon.icns
41 |
42 | # Directories potentially created on remote AFP share
43 | .AppleDB
44 | .AppleDesktop
45 | Network Trash Folder
46 | Temporary Items
47 | .apdisk
48 |
--------------------------------------------------------------------------------
/Convert-DSCSyntaxToFields.ps1:
--------------------------------------------------------------------------------
1 | $sampleSyntax = ((Get-DscResource User -Syntax).Split("`n") -join "`n")
2 |
3 | #reference
4 | {"
5 | UserName = [string]
6 | [DependsOn = [string[]]]
7 | [Description = [string]]
8 | [Disabled = [bool]]
9 | [Ensure = [string]{ Absent | Present }]
10 | [FullName = [string]]
11 | [Password = [PSCredential]]
12 | [PasswordChangeNotAllowed = [bool]]
13 | [PasswordChangeRequired = [bool]]
14 | [PasswordNeverExpires = [bool]]
15 | [PsDscRunAsCredential = [PSCredential]]
16 | " | ConvertFrom-StringData}
17 |
18 | $fields = $sampleSyntax.Split("`n")[2..(($sampleSyntax.Split("`n").length)-3)] | ConvertFrom-StringData
19 |
20 | foreach ($field in $fields){
21 | $name = $field.Keys[0]
22 | if ($name -like "``[*"){$name = $name -replace '\['}
23 | if ($name -like "Ensure*"){"$name is our special absent/present and should be a radio";continue}
24 | if ($field.Values[0] -like "*string*"){"$name should render as a textbox for strings"}
25 | if ($field.Values[0] -like "*bool*") {"$name should render as a radio true/false"}
26 |
27 | }
28 |
29 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | 
2 |
3 | # DSC-Designer #
4 |
5 | ----------
6 |
7 | A project to build a Group Policy like frontend for Desired State Configuration
8 |
9 | # What is it?
10 |
11 | Have you ever wished DSC were a little more 'wizard-like', maybe resembling something like other Microsoft tools? Then you'll like this project!
12 |
13 | 
14 |
15 |
16 | # How do I use it?
17 |
18 | Download the .ps1 file in this project and run the script like so:
19 |
20 | .\Start-DSCDesigner.ps1
21 |
22 | # What works?
23 |
24 | Currently, we are able to scrape all available DSC Resources installed on your machine, parse out the required syntax for each, and then, with a click of a button, export a valid DSC Configuration for application on systems in your environment.
25 |
26 | # How can I contribute?
27 |
28 | Contributions are simple. First, don't sell it! Secondly, simply fork the project, make your own commit and then send me a pull-request. That's it!
29 |
30 | Is it broke? *Open an issue, please :smile:*
31 |
32 | # What's planned?
33 |
34 | This project has been a work-in-progress since the MVP Summit last year, when I tried to get MS to make this UI, and they told me to do it on my own! So this is version 1.0, the mostly-functional-get-it-out-the-door release. Here's the planned features for somewhere down the road.
35 |
36 |
37 |
38 | Version |
39 | Feature |
40 | Completed |
41 |
42 |
43 | 1.0 |
44 | Released! |
45 | ✔️ |
46 |
47 |
48 | 1.1 |
49 | Ability to enact the configuration on your machine |
50 | |
51 |
52 |
53 | 1.2 |
54 | Button to jump to local dsc resource folder |
55 | |
56 |
57 |
58 | 2.0 |
59 | Display DSC Configuration as a form |
60 | |
61 |
62 |
63 | 2.? |
64 | render absent/present as radio button |
65 | |
66 |
67 |
68 | ? |
69 | render multi-choice as a combobox |
70 | |
71 |
72 |
73 | ? |
74 | render other options as checkbox |
75 | |
76 |
77 |
78 | ? |
79 | render string as a textbox |
80 | |
81 |
82 |
83 | ? |
84 | Display DSC Configuration as a form |
85 | |
86 |
87 |
88 | ?? |
89 | Track configuration Drift? |
90 | |
91 |
92 |
93 |
94 |
95 | # How was it made?
--------------------------------------------------------------------------------
/Start-DSCDesigner.ps1:
--------------------------------------------------------------------------------
1 | $inputXML = @"
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 | "@
61 |
62 | Function Update-Window {
63 | [cmdletBinding()]
64 | Param (
65 | $Control,
66 | $Property,
67 | $Value,
68 | [switch]$AppendContent
69 | )
70 |
71 | # This is kind of a hack, there may be a better way to do this
72 | If ($Property -eq "Close") {
73 | $syncHash.Window.Dispatcher.invoke([action]{$syncHash.Window.Close()},"Normal")
74 | Return
75 | }
76 |
77 | # This updates the control based on the parameters passed to the function
78 | $form.Dispatcher.Invoke([action]{
79 | # This bit is only really meaningful for the TextBox control, which might be useful for logging progress steps
80 | If ($PSBoundParameters['AppendContent']) {
81 | $Control.AppendText($Value)
82 | } Else {
83 | $Control.$Property = $Value
84 | }
85 | }, "Normal")
86 | }
87 |
88 | $inputXML = $inputXML -replace 'mc:Ignorable="d"','' -replace "x:N",'N' -replace '^:D
102 | Write-Host "Unable to load Windows.Markup.XamlReader. Double-check syntax and ensure .net is installed."
103 | }
104 |
105 | #===========================================================================
106 | # Store Form Objects In PowerShell
107 | #===========================================================================
108 |
109 | $xaml.SelectNodes("//*[@Name]") | %{Set-Variable -Name "WPF$($_.Name)" -Value $Form.FindName($_.Name)}
110 |
111 | Function Get-FormVariables{
112 | if ($global:ReadmeDisplay -ne $true){Write-host "If you need to reference this display again, run Get-FormVariables" -ForegroundColor Yellow;$global:ReadmeDisplay=$true}
113 | write-host "Found the following interactable elements from our form" -ForegroundColor Cyan
114 | get-variable WPF*
115 | }
116 |
117 | Get-FormVariables
118 |
119 | #===========================================================================
120 | # Use this space to add code to the various form elements in your GUI
121 | #===========================================================================
122 |
123 | #retrieve all DSC resources in the background
124 | $Runspace = [runspacefactory]::CreateRunspace()
125 |
126 | $PowerShell = [PowerShell]::Create()
127 |
128 | $PowerShell.runspace = $Runspace
129 |
130 | $Runspace.Open()
131 |
132 | [void]$PowerShell.AddScript({
133 |
134 | Get-DscResource
135 |
136 | })
137 |
138 | if ($AsyncObject.IsCompleted -eq ($true)){Write-host "COMPLETED"}
139 | else {write-host "Waiting for DSC resources to come back";start-sleep -Milliseconds 500}
140 | $AsyncObject = $PowerShell.BeginInvoke()
141 | $Data = $PowerShell.EndInvoke($AsyncObject)
142 |
143 | $resources = $Data
144 |
145 | #region Add checkboxes for each resource
146 | ForEach ($resource in $resources){
147 | $newCheckBox = New-Object System.Windows.Controls.CheckBox
148 | $newCheckBox.Name = $resource.Name
149 | $newCheckBox.Content = $resource.Name
150 | $newCheckBox.Background = "White"
151 | $newCheckBox.Width = '137'
152 |
153 | #region add a tab when checkbox clicked
154 | $newCheckBox.Add_checked({
155 | $WPFStatusText.Text = 'Loading resource...'
156 | $TabName = $this.Name
157 | $tab = New-Object System.Windows.Controls.TabItem
158 | $tab.Name = "$($TabName)Tab"
159 | $tab.Header = $TabName
160 |
161 | $text = New-Object System.Windows.Controls.TextBox
162 | $text.AcceptsReturn = $true
163 | $text.Text = ((Get-DscResource $this.Name -Syntax).Split("`n") -join "`n")
164 | $text.FontFamily = 'Consolas'
165 | $text.Add_TextChanged({
166 | $WPFDSCBox.Text = @"
167 | configuration $($WpfconfName.Text) {
168 | $($WPFtabControl.Items.Content.Text)
169 | }
170 | "@
171 | })
172 | $tab.Content = $text
173 |
174 | $WPFtabControl.AddChild($tab)
175 | $WPFStatusText.Text = 'Ready...'
176 | })
177 |
178 | $newCheckBox.Add_unchecked({
179 | $WPFtabControl.Items.Remove(($WPFtabControl.Items | Where Header -eq $this.Name))
180 | })
181 |
182 | $i = $WPFResources.Children.Add($newCheckBox)
183 | #endregion add Checkbox
184 |
185 | #needed a small delay to be able to add and then set the active tab
186 | start-sleep -milliseconds 100
187 | $WPFtabControl.SelectedIndex = $i - 1
188 |
189 | }
190 | #endregion add checkboxes
191 |
192 | #region event handlers for other buttons
193 | $WPFClear.Add_Click({
194 | $WPFResources.Children | ? Name -ne Clear | % {$_.IsChecked = $False}
195 | $WPFDSCBox.Text= "Compiled Resource will appear here"
196 | })
197 |
198 | $WPFClearv2.Add_Click({
199 | $WPFResources.Children | ? Name -ne Clear | % {$_.IsChecked = $False}
200 | $WPFDSCBox.Text= "Compiled Resource will appear here"
201 | })
202 |
203 | $WPFExport.Add_Click({
204 | $form.Dispatcher.Invoke([action]{$WPFStatusText.Text='Creating Configuration...'})
205 | write-host "Trying to invoke DSC config"
206 | try {Invoke-Expression $WPFDSCBox.Text -erroraction STOP}
207 | catch{write-warning 'aw hell nah'}
208 |
209 |
210 |
211 | $FolderDialog = New-Object System.Windows.Forms.FolderBrowserDialog
212 |
213 | $FolderDialog.ShowDialog() | Out-Null
214 |
215 | $outDir = $FolderDialog.SelectedPath
216 |
217 | & $WpfconfName.Text -OutPutPath $outDir
218 |
219 | [System.Windows.Forms.MessageBox]::Show("DSC Resource Created at $outDir",'DSC Designer')
220 | })
221 |
222 | #endregion
223 |
224 |
225 | $Form.ShowDialog() | out-null
226 |
--------------------------------------------------------------------------------
/XAML/.vs/FoxDeploy DSC Designer/v14/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/1RedOne/DSC-Designer/678809973724da31dc1a26ee7489aa86517063d2/XAML/.vs/FoxDeploy DSC Designer/v14/.suo
--------------------------------------------------------------------------------
/XAML/.vs/FoxDeploy DSC Designer/v15/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/1RedOne/DSC-Designer/678809973724da31dc1a26ee7489aa86517063d2/XAML/.vs/FoxDeploy DSC Designer/v15/.suo
--------------------------------------------------------------------------------
/XAML/FoxDeploy DSC Designer.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 15
4 | VisualStudioVersion = 15.0.25123.0
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FoxDeploy DSC Designer", "FoxDeployDSCdesigner\FoxDeploy DSC Designer.csproj", "{0F680F01-35F5-447D-AFF5-FF4A26C625DD}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug|Any CPU = Debug|Any CPU
11 | Release|Any CPU = Release|Any CPU
12 | EndGlobalSection
13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
14 | {0F680F01-35F5-447D-AFF5-FF4A26C625DD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15 | {0F680F01-35F5-447D-AFF5-FF4A26C625DD}.Debug|Any CPU.Build.0 = Debug|Any CPU
16 | {0F680F01-35F5-447D-AFF5-FF4A26C625DD}.Release|Any CPU.ActiveCfg = Release|Any CPU
17 | {0F680F01-35F5-447D-AFF5-FF4A26C625DD}.Release|Any CPU.Build.0 = Release|Any CPU
18 | EndGlobalSection
19 | GlobalSection(SolutionProperties) = preSolution
20 | HideSolutionNode = FALSE
21 | EndGlobalSection
22 | EndGlobal
23 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/0.1MainWindow.xaml:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/0.1MainWindow.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 | using System.Windows;
7 | using System.Windows.Controls;
8 | using System.Windows.Data;
9 | using System.Windows.Documents;
10 | using System.Windows.Input;
11 | using System.Windows.Media;
12 | using System.Windows.Media.Imaging;
13 | using System.Windows.Navigation;
14 | using System.Windows.Shapes;
15 |
16 | namespace WpfApplication1
17 | {
18 | ///
19 | /// Interaction logic for MainWindow.xaml
20 | ///
21 | public partial class MainWindow : Window
22 | {
23 | public MainWindow()
24 | {
25 | InitializeComponent();
26 | }
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/0.2MainWindow.xaml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/0.2MainWindow.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 | using System.Windows;
7 | using System.Windows.Controls;
8 | using System.Windows.Data;
9 | using System.Windows.Documents;
10 | using System.Windows.Input;
11 | using System.Windows.Media;
12 | using System.Windows.Media.Imaging;
13 | using System.Windows.Shapes;
14 |
15 | namespace WpfApplication1
16 | {
17 | ///
18 | /// Interaction logic for Window1.xaml
19 | ///
20 | public partial class Window1 : Window
21 | {
22 | public Window1()
23 | {
24 | InitializeComponent();
25 | }
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/0.3.backup:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/0.3MainWindow.xaml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/0.3MainWindow.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 | using System.Windows;
7 | using System.Windows.Controls;
8 | using System.Windows.Data;
9 | using System.Windows.Documents;
10 | using System.Windows.Input;
11 | using System.Windows.Media;
12 | using System.Windows.Media.Imaging;
13 | using System.Windows.Shapes;
14 |
15 | namespace WpfApplication1
16 | {
17 | ///
18 | /// Interaction logic for Window2.xaml
19 | ///
20 | public partial class Window2 : Window
21 | {
22 | public Window2()
23 | {
24 | InitializeComponent();
25 | }
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/0.5MainWindow.xaml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/0.5MainWindow.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 | using System.Windows;
7 | using System.Windows.Controls;
8 | using System.Windows.Data;
9 | using System.Windows.Documents;
10 | using System.Windows.Input;
11 | using System.Windows.Media;
12 | using System.Windows.Media.Imaging;
13 | using System.Windows.Shapes;
14 |
15 | namespace WpfApplication1
16 | {
17 | ///
18 | /// Interaction logic for _0.xaml
19 | ///
20 | public partial class _0 : Window
21 | {
22 | public _0()
23 | {
24 | InitializeComponent();
25 | }
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/App.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/App.xaml:
--------------------------------------------------------------------------------
1 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/App.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Configuration;
4 | using System.Data;
5 | using System.Linq;
6 | using System.Threading.Tasks;
7 | using System.Windows;
8 |
9 | namespace WpfApplication1
10 | {
11 | ///
12 | /// Interaction logic for App.xaml
13 | ///
14 | public partial class App : Application
15 | {
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/AutoLoadingDev.xaml:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/AutoLoadingDev.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 | using System.Windows;
7 | using System.Windows.Controls;
8 | using System.Windows.Data;
9 | using System.Windows.Documents;
10 | using System.Windows.Input;
11 | using System.Windows.Media;
12 | using System.Windows.Media.Imaging;
13 | using System.Windows.Shapes;
14 |
15 | namespace FoxDeployDSC_Designer
16 | {
17 | ///
18 | /// Interaction logic for AutoLoadingDev.xaml
19 | ///
20 | public partial class AutoLoadingDev : Window
21 | {
22 | public AutoLoadingDev()
23 | {
24 | InitializeComponent();
25 | }
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/FoxDeploy DSC Designer.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Debug
6 | AnyCPU
7 | {0F680F01-35F5-447D-AFF5-FF4A26C625DD}
8 | WinExe
9 | Properties
10 | FoxDeployDSC_Designer
11 | FoxDeployDSC_Designer
12 | v4.5.2
13 | 512
14 | {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
15 | 4
16 | true
17 |
18 |
19 | AnyCPU
20 | true
21 | full
22 | false
23 | bin\Debug\
24 | DEBUG;TRACE
25 | prompt
26 | 4
27 |
28 |
29 | AnyCPU
30 | pdbonly
31 | true
32 | bin\Release\
33 | TRACE
34 | prompt
35 | 4
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 | 4.0
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 | MSBuild:Compile
56 | Designer
57 |
58 |
59 | 0.2MainWindow.xaml
60 |
61 |
62 | 0.3MainWindow.xaml
63 |
64 |
65 | 0.5MainWindow.xaml
66 |
67 |
68 | AutoLoadingDev.xaml
69 |
70 |
71 | TabDesigner.xaml
72 |
73 |
74 | MSBuild:Compile
75 | Designer
76 |
77 |
78 | App.xaml
79 | Code
80 |
81 |
82 | 0.1MainWindow.xaml
83 | Code
84 |
85 |
86 | Designer
87 | MSBuild:Compile
88 |
89 |
90 | Designer
91 | MSBuild:Compile
92 |
93 |
94 | Designer
95 | MSBuild:Compile
96 |
97 |
98 | Designer
99 | MSBuild:Compile
100 |
101 |
102 | Designer
103 | MSBuild:Compile
104 |
105 |
106 |
107 |
108 | Code
109 |
110 |
111 | True
112 | True
113 | Resources.resx
114 |
115 |
116 | True
117 | Settings.settings
118 | True
119 |
120 |
121 | ResXFileCodeGenerator
122 | Resources.Designer.cs
123 |
124 |
125 | SettingsSingleFileGenerator
126 | Settings.Designer.cs
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
141 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Resources;
3 | using System.Runtime.CompilerServices;
4 | using System.Runtime.InteropServices;
5 | using System.Windows;
6 |
7 | // General Information about an assembly is controlled through the following
8 | // set of attributes. Change these attribute values to modify the information
9 | // associated with an assembly.
10 | [assembly: AssemblyTitle("WpfApplication1")]
11 | [assembly: AssemblyDescription("")]
12 | [assembly: AssemblyConfiguration("")]
13 | [assembly: AssemblyCompany("")]
14 | [assembly: AssemblyProduct("WpfApplication1")]
15 | [assembly: AssemblyCopyright("Copyright © 2016")]
16 | [assembly: AssemblyTrademark("")]
17 | [assembly: AssemblyCulture("")]
18 |
19 | // Setting ComVisible to false makes the types in this assembly not visible
20 | // to COM components. If you need to access a type in this assembly from
21 | // COM, set the ComVisible attribute to true on that type.
22 | [assembly: ComVisible(false)]
23 |
24 | //In order to begin building localizable applications, set
25 | //CultureYouAreCodingWith in your .csproj file
26 | //inside a . For example, if you are using US english
27 | //in your source files, set the to en-US. Then uncomment
28 | //the NeutralResourceLanguage attribute below. Update the "en-US" in
29 | //the line below to match the UICulture setting in the project file.
30 |
31 | //[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
32 |
33 |
34 | [assembly: ThemeInfo(
35 | ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
36 | //(used if a resource is not found in the page,
37 | // or application resource dictionaries)
38 | ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
39 | //(used if a resource is not found in the page,
40 | // app, or any theme specific resource dictionaries)
41 | )]
42 |
43 |
44 | // Version information for an assembly consists of the following four values:
45 | //
46 | // Major Version
47 | // Minor Version
48 | // Build Number
49 | // Revision
50 | //
51 | // You can specify all the values or you can default the Build and Revision Numbers
52 | // by using the '*' as shown below:
53 | // [assembly: AssemblyVersion("1.0.*")]
54 | [assembly: AssemblyVersion("1.0.0.0")]
55 | [assembly: AssemblyFileVersion("1.0.0.0")]
56 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/Properties/Resources.Designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | // Runtime Version:4.0.30319.42000
5 | //
6 | // Changes to this file may cause incorrect behavior and will be lost if
7 | // the code is regenerated.
8 | //
9 | //------------------------------------------------------------------------------
10 |
11 | namespace FoxDeployDSC_Designer.Properties {
12 | using System;
13 |
14 |
15 | ///
16 | /// A strongly-typed resource class, for looking up localized strings, etc.
17 | ///
18 | // This class was auto-generated by the StronglyTypedResourceBuilder
19 | // class via a tool like ResGen or Visual Studio.
20 | // To add or remove a member, edit your .ResX file then rerun ResGen
21 | // with the /str option, or rebuild your VS project.
22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
25 | internal class Resources {
26 |
27 | private static global::System.Resources.ResourceManager resourceMan;
28 |
29 | private static global::System.Globalization.CultureInfo resourceCulture;
30 |
31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
32 | internal Resources() {
33 | }
34 |
35 | ///
36 | /// Returns the cached ResourceManager instance used by this class.
37 | ///
38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
39 | internal static global::System.Resources.ResourceManager ResourceManager {
40 | get {
41 | if (object.ReferenceEquals(resourceMan, null)) {
42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("FoxDeployDSC_Designer.Properties.Resources", typeof(Resources).Assembly);
43 | resourceMan = temp;
44 | }
45 | return resourceMan;
46 | }
47 | }
48 |
49 | ///
50 | /// Overrides the current thread's CurrentUICulture property for all
51 | /// resource lookups using this strongly typed resource class.
52 | ///
53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
54 | internal static global::System.Globalization.CultureInfo Culture {
55 | get {
56 | return resourceCulture;
57 | }
58 | set {
59 | resourceCulture = value;
60 | }
61 | }
62 | }
63 | }
64 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/Properties/Resources.resx:
--------------------------------------------------------------------------------
1 |
2 |
3 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 | text/microsoft-resx
107 |
108 |
109 | 2.0
110 |
111 |
112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
113 |
114 |
115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
116 |
117 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/Properties/Settings.Designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | // Runtime Version:4.0.30319.42000
5 | //
6 | // Changes to this file may cause incorrect behavior and will be lost if
7 | // the code is regenerated.
8 | //
9 | //------------------------------------------------------------------------------
10 |
11 | namespace FoxDeployDSC_Designer.Properties {
12 |
13 |
14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.0.0.0")]
16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
17 |
18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
19 |
20 | public static Settings Default {
21 | get {
22 | return defaultInstance;
23 | }
24 | }
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/TabDesigner.xaml:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/TabDesigner.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 | using System.Windows;
7 | using System.Windows.Controls;
8 | using System.Windows.Data;
9 | using System.Windows.Documents;
10 | using System.Windows.Input;
11 | using System.Windows.Media;
12 | using System.Windows.Media.Imaging;
13 | using System.Windows.Shapes;
14 |
15 | namespace WpfApplication1
16 | {
17 | ///
18 | /// Interaction logic for Window3.xaml
19 | ///
20 | public partial class Window3 : Window
21 | {
22 | public Window3()
23 | {
24 | InitializeComponent();
25 | }
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/bin/Debug/FoxDeployDSC_Designer.exe.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/bin/Debug/FoxDeployDSC_Designer.vshost.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/1RedOne/DSC-Designer/678809973724da31dc1a26ee7489aa86517063d2/XAML/FoxDeployDSCdesigner/bin/Debug/FoxDeployDSC_Designer.vshost.exe
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/bin/Debug/FoxDeployDSC_Designer.vshost.exe.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/bin/Debug/FoxDeployDSC_Designer.vshost.exe.manifest:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/bin/Debug/Microsoft.VisualStudio.HostingProcess.Utilities.Sync.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/1RedOne/DSC-Designer/678809973724da31dc1a26ee7489aa86517063d2/XAML/FoxDeployDSCdesigner/bin/Debug/Microsoft.VisualStudio.HostingProcess.Utilities.Sync.dll
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/bin/Debug/Microsoft.VisualStudio.HostingProcess.Utilities.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/1RedOne/DSC-Designer/678809973724da31dc1a26ee7489aa86517063d2/XAML/FoxDeployDSCdesigner/bin/Debug/Microsoft.VisualStudio.HostingProcess.Utilities.dll
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/bin/Debug/WpfApplication1.exe.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/bin/Debug/WpfApplication1.vshost.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/1RedOne/DSC-Designer/678809973724da31dc1a26ee7489aa86517063d2/XAML/FoxDeployDSCdesigner/bin/Debug/WpfApplication1.vshost.exe
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/bin/Debug/WpfApplication1.vshost.exe.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/bin/Debug/WpfApplication1.vshost.exe.manifest:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/0.1MainWindow.g.i.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\0.1MainWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "3BD6D30E765CDA497DAF08A4197BC821"
2 | //------------------------------------------------------------------------------
3 | //
4 | // This code was generated by a tool.
5 | // Runtime Version:4.0.30319.42000
6 | //
7 | // Changes to this file may cause incorrect behavior and will be lost if
8 | // the code is regenerated.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 | using WpfApplication1;
33 |
34 |
35 | namespace WpfApplication1 {
36 |
37 |
38 | ///
39 | /// MainWindow
40 | ///
41 | public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
42 |
43 |
44 | #line 11 "..\..\0.1MainWindow.xaml"
45 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
46 | internal System.Windows.Controls.GroupBox groupBox;
47 |
48 | #line default
49 | #line hidden
50 |
51 |
52 | #line 12 "..\..\0.1MainWindow.xaml"
53 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
54 | internal System.Windows.Controls.WrapPanel Resources;
55 |
56 | #line default
57 | #line hidden
58 |
59 |
60 | #line 24 "..\..\0.1MainWindow.xaml"
61 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
62 | internal System.Windows.Controls.TabControl tabControl;
63 |
64 | #line default
65 | #line hidden
66 |
67 |
68 | #line 31 "..\..\0.1MainWindow.xaml"
69 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
70 | internal System.Windows.Controls.Expander expander;
71 |
72 | #line default
73 | #line hidden
74 |
75 | private bool _contentLoaded;
76 |
77 | ///
78 | /// InitializeComponent
79 | ///
80 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
81 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
82 | public void InitializeComponent() {
83 | if (_contentLoaded) {
84 | return;
85 | }
86 | _contentLoaded = true;
87 | System.Uri resourceLocater = new System.Uri("/FoxDeployDSC_Designer;component/0.1mainwindow.xaml", System.UriKind.Relative);
88 |
89 | #line 1 "..\..\0.1MainWindow.xaml"
90 | System.Windows.Application.LoadComponent(this, resourceLocater);
91 |
92 | #line default
93 | #line hidden
94 | }
95 |
96 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
97 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
98 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
99 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
100 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
101 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
102 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
103 | switch (connectionId)
104 | {
105 | case 1:
106 | this.groupBox = ((System.Windows.Controls.GroupBox)(target));
107 | return;
108 | case 2:
109 | this.Resources = ((System.Windows.Controls.WrapPanel)(target));
110 | return;
111 | case 3:
112 | this.tabControl = ((System.Windows.Controls.TabControl)(target));
113 | return;
114 | case 4:
115 | this.expander = ((System.Windows.Controls.Expander)(target));
116 | return;
117 | }
118 | this._contentLoaded = true;
119 | }
120 | }
121 | }
122 |
123 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/0.2MainWindow.g.i.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\0.2MainWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "526CAE7F7369579C97124FE503E78E2D"
2 | //------------------------------------------------------------------------------
3 | //
4 | // This code was generated by a tool.
5 | // Runtime Version:4.0.30319.42000
6 | //
7 | // Changes to this file may cause incorrect behavior and will be lost if
8 | // the code is regenerated.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 |
33 |
34 | namespace WpfTutorialSamples.Panels {
35 |
36 |
37 | ///
38 | /// GridColRowSpan
39 | ///
40 | public partial class GridColRowSpan : System.Windows.Window, System.Windows.Markup.IComponentConnector {
41 |
42 |
43 | #line 14 "..\..\0.2MainWindow.xaml"
44 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
45 | internal System.Windows.Controls.GroupBox groupBox;
46 |
47 | #line default
48 | #line hidden
49 |
50 |
51 | #line 15 "..\..\0.2MainWindow.xaml"
52 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
53 | internal System.Windows.Controls.DockPanel Resources;
54 |
55 | #line default
56 | #line hidden
57 |
58 |
59 | #line 27 "..\..\0.2MainWindow.xaml"
60 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
61 | internal System.Windows.Controls.TabControl tabControl;
62 |
63 | #line default
64 | #line hidden
65 |
66 |
67 | #line 35 "..\..\0.2MainWindow.xaml"
68 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
69 | internal System.Windows.Controls.RichTextBox richTextBox;
70 |
71 | #line default
72 | #line hidden
73 |
74 | private bool _contentLoaded;
75 |
76 | ///
77 | /// InitializeComponent
78 | ///
79 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
80 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
81 | public void InitializeComponent() {
82 | if (_contentLoaded) {
83 | return;
84 | }
85 | _contentLoaded = true;
86 | System.Uri resourceLocater = new System.Uri("/FoxDeployDSC_Designer;component/0.2mainwindow.xaml", System.UriKind.Relative);
87 |
88 | #line 1 "..\..\0.2MainWindow.xaml"
89 | System.Windows.Application.LoadComponent(this, resourceLocater);
90 |
91 | #line default
92 | #line hidden
93 | }
94 |
95 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
96 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
97 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
98 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
99 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
100 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
101 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
102 | switch (connectionId)
103 | {
104 | case 1:
105 | this.groupBox = ((System.Windows.Controls.GroupBox)(target));
106 | return;
107 | case 2:
108 | this.Resources = ((System.Windows.Controls.DockPanel)(target));
109 | return;
110 | case 3:
111 | this.tabControl = ((System.Windows.Controls.TabControl)(target));
112 | return;
113 | case 4:
114 | this.richTextBox = ((System.Windows.Controls.RichTextBox)(target));
115 | return;
116 | }
117 | this._contentLoaded = true;
118 | }
119 | }
120 | }
121 |
122 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/0.3.baml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/1RedOne/DSC-Designer/678809973724da31dc1a26ee7489aa86517063d2/XAML/FoxDeployDSCdesigner/obj/Debug/0.3.baml
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/0.3.g.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\0.3.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "C7722368E4DCAAAB324C438F4B692013"
2 | //------------------------------------------------------------------------------
3 | //
4 | // This code was generated by a tool.
5 | // Runtime Version:4.0.30319.42000
6 | //
7 | // Changes to this file may cause incorrect behavior and will be lost if
8 | // the code is regenerated.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 |
33 |
34 | namespace WpfTutorialSamples.Panels {
35 |
36 |
37 | ///
38 | /// GridColRowSpan
39 | ///
40 | public partial class GridColRowSpan : System.Windows.Window, System.Windows.Markup.IComponentConnector {
41 |
42 |
43 | #line 12 "..\..\0.3.xaml"
44 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
45 | internal System.Windows.Controls.RowDefinition GridSplitterRow;
46 |
47 | #line default
48 | #line hidden
49 |
50 |
51 | #line 15 "..\..\0.3.xaml"
52 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
53 | internal System.Windows.Controls.GroupBox groupBox;
54 |
55 | #line default
56 | #line hidden
57 |
58 |
59 | #line 16 "..\..\0.3.xaml"
60 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
61 | internal System.Windows.Controls.WrapPanel Resources;
62 |
63 | #line default
64 | #line hidden
65 |
66 |
67 | #line 24 "..\..\0.3.xaml"
68 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
69 | internal System.Windows.Controls.Button Clear;
70 |
71 | #line default
72 | #line hidden
73 |
74 |
75 | #line 28 "..\..\0.3.xaml"
76 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
77 | internal System.Windows.Controls.TabControl tabControl;
78 |
79 | #line default
80 | #line hidden
81 |
82 |
83 | #line 46 "..\..\0.3.xaml"
84 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
85 | internal System.Windows.Controls.RichTextBox richTextBox;
86 |
87 | #line default
88 | #line hidden
89 |
90 | private bool _contentLoaded;
91 |
92 | ///
93 | /// InitializeComponent
94 | ///
95 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
96 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
97 | public void InitializeComponent() {
98 | if (_contentLoaded) {
99 | return;
100 | }
101 | _contentLoaded = true;
102 | System.Uri resourceLocater = new System.Uri("/WpfApplication1;component/0.3.xaml", System.UriKind.Relative);
103 |
104 | #line 1 "..\..\0.3.xaml"
105 | System.Windows.Application.LoadComponent(this, resourceLocater);
106 |
107 | #line default
108 | #line hidden
109 | }
110 |
111 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
112 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
113 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
114 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
115 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
116 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
117 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
118 | switch (connectionId)
119 | {
120 | case 1:
121 | this.GridSplitterRow = ((System.Windows.Controls.RowDefinition)(target));
122 | return;
123 | case 2:
124 | this.groupBox = ((System.Windows.Controls.GroupBox)(target));
125 | return;
126 | case 3:
127 | this.Resources = ((System.Windows.Controls.WrapPanel)(target));
128 | return;
129 | case 4:
130 | this.Clear = ((System.Windows.Controls.Button)(target));
131 | return;
132 | case 5:
133 | this.tabControl = ((System.Windows.Controls.TabControl)(target));
134 | return;
135 | case 6:
136 | this.richTextBox = ((System.Windows.Controls.RichTextBox)(target));
137 | return;
138 | }
139 | this._contentLoaded = true;
140 | }
141 | }
142 | }
143 |
144 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/0.3.g.i.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\0.3.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "C7722368E4DCAAAB324C438F4B692013"
2 | //------------------------------------------------------------------------------
3 | //
4 | // This code was generated by a tool.
5 | // Runtime Version:4.0.30319.42000
6 | //
7 | // Changes to this file may cause incorrect behavior and will be lost if
8 | // the code is regenerated.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 |
33 |
34 | namespace WpfTutorialSamples.Panels {
35 |
36 |
37 | ///
38 | /// GridColRowSpan
39 | ///
40 | public partial class GridColRowSpan : System.Windows.Window, System.Windows.Markup.IComponentConnector {
41 |
42 |
43 | #line 12 "..\..\0.3.xaml"
44 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
45 | internal System.Windows.Controls.RowDefinition GridSplitterRow;
46 |
47 | #line default
48 | #line hidden
49 |
50 |
51 | #line 15 "..\..\0.3.xaml"
52 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
53 | internal System.Windows.Controls.GroupBox groupBox;
54 |
55 | #line default
56 | #line hidden
57 |
58 |
59 | #line 16 "..\..\0.3.xaml"
60 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
61 | internal System.Windows.Controls.WrapPanel Resources;
62 |
63 | #line default
64 | #line hidden
65 |
66 |
67 | #line 24 "..\..\0.3.xaml"
68 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
69 | internal System.Windows.Controls.Button Clear;
70 |
71 | #line default
72 | #line hidden
73 |
74 |
75 | #line 28 "..\..\0.3.xaml"
76 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
77 | internal System.Windows.Controls.TabControl tabControl;
78 |
79 | #line default
80 | #line hidden
81 |
82 |
83 | #line 41 "..\..\0.3.xaml"
84 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
85 | internal System.Windows.Controls.RichTextBox richTextBox;
86 |
87 | #line default
88 | #line hidden
89 |
90 | private bool _contentLoaded;
91 |
92 | ///
93 | /// InitializeComponent
94 | ///
95 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
96 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
97 | public void InitializeComponent() {
98 | if (_contentLoaded) {
99 | return;
100 | }
101 | _contentLoaded = true;
102 | System.Uri resourceLocater = new System.Uri("/WpfApplication1;component/0.3.xaml", System.UriKind.Relative);
103 |
104 | #line 1 "..\..\0.3.xaml"
105 | System.Windows.Application.LoadComponent(this, resourceLocater);
106 |
107 | #line default
108 | #line hidden
109 | }
110 |
111 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
112 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
113 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
114 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
115 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
116 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
117 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
118 | switch (connectionId)
119 | {
120 | case 1:
121 | this.GridSplitterRow = ((System.Windows.Controls.RowDefinition)(target));
122 | return;
123 | case 2:
124 | this.groupBox = ((System.Windows.Controls.GroupBox)(target));
125 | return;
126 | case 3:
127 | this.Resources = ((System.Windows.Controls.WrapPanel)(target));
128 | return;
129 | case 4:
130 | this.Clear = ((System.Windows.Controls.Button)(target));
131 | return;
132 | case 5:
133 | this.tabControl = ((System.Windows.Controls.TabControl)(target));
134 | return;
135 | case 6:
136 | this.richTextBox = ((System.Windows.Controls.RichTextBox)(target));
137 | return;
138 | }
139 | this._contentLoaded = true;
140 | }
141 | }
142 | }
143 |
144 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/0.3MainWindow.g.i.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\0.3MainWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "042C0957FF703230C8751A6E788335CC"
2 | //------------------------------------------------------------------------------
3 | //
4 | // This code was generated by a tool.
5 | // Runtime Version:4.0.30319.42000
6 | //
7 | // Changes to this file may cause incorrect behavior and will be lost if
8 | // the code is regenerated.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 |
33 |
34 | namespace WpfTutorialSamples.Panels {
35 |
36 |
37 | ///
38 | /// GridColRowSpan
39 | ///
40 | public partial class GridColRowSpan : System.Windows.Window, System.Windows.Markup.IComponentConnector {
41 |
42 |
43 | #line 12 "..\..\0.3MainWindow.xaml"
44 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
45 | internal System.Windows.Controls.RowDefinition GridSplitterRow;
46 |
47 | #line default
48 | #line hidden
49 |
50 |
51 | #line 15 "..\..\0.3MainWindow.xaml"
52 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
53 | internal System.Windows.Controls.GroupBox groupBox;
54 |
55 | #line default
56 | #line hidden
57 |
58 |
59 | #line 16 "..\..\0.3MainWindow.xaml"
60 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
61 | internal System.Windows.Controls.WrapPanel Resources;
62 |
63 | #line default
64 | #line hidden
65 |
66 |
67 | #line 24 "..\..\0.3MainWindow.xaml"
68 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
69 | internal System.Windows.Controls.Button Clear;
70 |
71 | #line default
72 | #line hidden
73 |
74 |
75 | #line 28 "..\..\0.3MainWindow.xaml"
76 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
77 | internal System.Windows.Controls.TabControl tabControl;
78 |
79 | #line default
80 | #line hidden
81 |
82 |
83 | #line 41 "..\..\0.3MainWindow.xaml"
84 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
85 | internal System.Windows.Controls.RichTextBox richTextBox;
86 |
87 | #line default
88 | #line hidden
89 |
90 | private bool _contentLoaded;
91 |
92 | ///
93 | /// InitializeComponent
94 | ///
95 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
96 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
97 | public void InitializeComponent() {
98 | if (_contentLoaded) {
99 | return;
100 | }
101 | _contentLoaded = true;
102 | System.Uri resourceLocater = new System.Uri("/FoxDeployDSC_Designer;component/0.3mainwindow.xaml", System.UriKind.Relative);
103 |
104 | #line 1 "..\..\0.3MainWindow.xaml"
105 | System.Windows.Application.LoadComponent(this, resourceLocater);
106 |
107 | #line default
108 | #line hidden
109 | }
110 |
111 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
112 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
113 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
114 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
115 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
116 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
117 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
118 | switch (connectionId)
119 | {
120 | case 1:
121 | this.GridSplitterRow = ((System.Windows.Controls.RowDefinition)(target));
122 | return;
123 | case 2:
124 | this.groupBox = ((System.Windows.Controls.GroupBox)(target));
125 | return;
126 | case 3:
127 | this.Resources = ((System.Windows.Controls.WrapPanel)(target));
128 | return;
129 | case 4:
130 | this.Clear = ((System.Windows.Controls.Button)(target));
131 | return;
132 | case 5:
133 | this.tabControl = ((System.Windows.Controls.TabControl)(target));
134 | return;
135 | case 6:
136 | this.richTextBox = ((System.Windows.Controls.RichTextBox)(target));
137 | return;
138 | }
139 | this._contentLoaded = true;
140 | }
141 | }
142 | }
143 |
144 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/0.4MainWindow.g.i.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\0.4MainWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "2293E194CBEB9893C6D121443AEEE3C2"
2 | //------------------------------------------------------------------------------
3 | //
4 | // This code was generated by a tool.
5 | // Runtime Version:4.0.30319.42000
6 | //
7 | // Changes to this file may cause incorrect behavior and will be lost if
8 | // the code is regenerated.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 |
33 |
34 | namespace WpfTutorialSamples.Panels {
35 |
36 |
37 | ///
38 | /// GridColRowSpan
39 | ///
40 | public partial class GridColRowSpan : System.Windows.Window, System.Windows.Markup.IComponentConnector {
41 |
42 |
43 | #line 12 "..\..\0.4MainWindow.xaml"
44 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
45 | internal System.Windows.Controls.RowDefinition GridSplitterRow;
46 |
47 | #line default
48 | #line hidden
49 |
50 |
51 | #line 14 "..\..\0.4MainWindow.xaml"
52 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
53 | internal System.Windows.Controls.RowDefinition GridSplitterRow2;
54 |
55 | #line default
56 | #line hidden
57 |
58 |
59 | #line 17 "..\..\0.4MainWindow.xaml"
60 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
61 | internal System.Windows.Controls.GroupBox groupBox;
62 |
63 | #line default
64 | #line hidden
65 |
66 |
67 | #line 18 "..\..\0.4MainWindow.xaml"
68 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
69 | internal System.Windows.Controls.WrapPanel Resources;
70 |
71 | #line default
72 | #line hidden
73 |
74 |
75 | #line 26 "..\..\0.4MainWindow.xaml"
76 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
77 | internal System.Windows.Controls.Button Clear;
78 |
79 | #line default
80 | #line hidden
81 |
82 |
83 | #line 30 "..\..\0.4MainWindow.xaml"
84 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
85 | internal System.Windows.Controls.TabControl tabControl;
86 |
87 | #line default
88 | #line hidden
89 |
90 |
91 | #line 39 "..\..\0.4MainWindow.xaml"
92 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
93 | internal System.Windows.Controls.RichTextBox richTextBox;
94 |
95 | #line default
96 | #line hidden
97 |
98 |
99 | #line 41 "..\..\0.4MainWindow.xaml"
100 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
101 | internal System.Windows.Documents.Paragraph Paragraph;
102 |
103 | #line default
104 | #line hidden
105 |
106 |
107 | #line 42 "..\..\0.4MainWindow.xaml"
108 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
109 | internal System.Windows.Documents.Run CompiledDSC;
110 |
111 | #line default
112 | #line hidden
113 |
114 |
115 | #line 48 "..\..\0.4MainWindow.xaml"
116 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
117 | internal System.Windows.Controls.GroupBox groupBox2;
118 |
119 | #line default
120 | #line hidden
121 |
122 | private bool _contentLoaded;
123 |
124 | ///
125 | /// InitializeComponent
126 | ///
127 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
128 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
129 | public void InitializeComponent() {
130 | if (_contentLoaded) {
131 | return;
132 | }
133 | _contentLoaded = true;
134 | System.Uri resourceLocater = new System.Uri("/WpfApplication1;component/0.4mainwindow.xaml", System.UriKind.Relative);
135 |
136 | #line 1 "..\..\0.4MainWindow.xaml"
137 | System.Windows.Application.LoadComponent(this, resourceLocater);
138 |
139 | #line default
140 | #line hidden
141 | }
142 |
143 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
144 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
145 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
146 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
147 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
148 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
149 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
150 | switch (connectionId)
151 | {
152 | case 1:
153 | this.GridSplitterRow = ((System.Windows.Controls.RowDefinition)(target));
154 | return;
155 | case 2:
156 | this.GridSplitterRow2 = ((System.Windows.Controls.RowDefinition)(target));
157 | return;
158 | case 3:
159 | this.groupBox = ((System.Windows.Controls.GroupBox)(target));
160 | return;
161 | case 4:
162 | this.Resources = ((System.Windows.Controls.WrapPanel)(target));
163 | return;
164 | case 5:
165 | this.Clear = ((System.Windows.Controls.Button)(target));
166 | return;
167 | case 6:
168 | this.tabControl = ((System.Windows.Controls.TabControl)(target));
169 | return;
170 | case 7:
171 | this.richTextBox = ((System.Windows.Controls.RichTextBox)(target));
172 | return;
173 | case 8:
174 | this.Paragraph = ((System.Windows.Documents.Paragraph)(target));
175 | return;
176 | case 9:
177 | this.CompiledDSC = ((System.Windows.Documents.Run)(target));
178 | return;
179 | case 10:
180 | this.groupBox2 = ((System.Windows.Controls.GroupBox)(target));
181 | return;
182 | }
183 | this._contentLoaded = true;
184 | }
185 | }
186 | }
187 |
188 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/0.5MainWindow.g.i.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\0.5MainWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "8974DBC7FADCD344A340E2FCD1DADD19"
2 | //------------------------------------------------------------------------------
3 | //
4 | // This code was generated by a tool.
5 | // Runtime Version:4.0.30319.42000
6 | //
7 | // Changes to this file may cause incorrect behavior and will be lost if
8 | // the code is regenerated.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 |
33 |
34 | namespace WpfTutorialSamples.Panels {
35 |
36 |
37 | ///
38 | /// GridColRowSpan
39 | ///
40 | public partial class GridColRowSpan : System.Windows.Window, System.Windows.Markup.IComponentConnector {
41 |
42 |
43 | #line 12 "..\..\0.5MainWindow.xaml"
44 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
45 | internal System.Windows.Controls.RowDefinition GridSplitterRow;
46 |
47 | #line default
48 | #line hidden
49 |
50 |
51 | #line 14 "..\..\0.5MainWindow.xaml"
52 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
53 | internal System.Windows.Controls.RowDefinition GridSplitterRow2;
54 |
55 | #line default
56 | #line hidden
57 |
58 |
59 | #line 16 "..\..\0.5MainWindow.xaml"
60 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
61 | internal System.Windows.Controls.RowDefinition GridSplitterRow3;
62 |
63 | #line default
64 | #line hidden
65 |
66 |
67 | #line 19 "..\..\0.5MainWindow.xaml"
68 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
69 | internal System.Windows.Controls.GroupBox groupBox;
70 |
71 | #line default
72 | #line hidden
73 |
74 |
75 | #line 20 "..\..\0.5MainWindow.xaml"
76 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
77 | internal System.Windows.Controls.WrapPanel Resources;
78 |
79 | #line default
80 | #line hidden
81 |
82 |
83 | #line 28 "..\..\0.5MainWindow.xaml"
84 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
85 | internal System.Windows.Controls.Button Clear;
86 |
87 | #line default
88 | #line hidden
89 |
90 |
91 | #line 31 "..\..\0.5MainWindow.xaml"
92 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
93 | internal System.Windows.Controls.TabControl tabControl;
94 |
95 | #line default
96 | #line hidden
97 |
98 |
99 | #line 40 "..\..\0.5MainWindow.xaml"
100 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
101 | internal System.Windows.Controls.TextBox ConfName;
102 |
103 | #line default
104 | #line hidden
105 |
106 |
107 | #line 41 "..\..\0.5MainWindow.xaml"
108 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
109 | internal System.Windows.Controls.Button Export;
110 |
111 | #line default
112 | #line hidden
113 |
114 |
115 | #line 42 "..\..\0.5MainWindow.xaml"
116 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
117 | internal System.Windows.Controls.Button Clearv2;
118 |
119 | #line default
120 | #line hidden
121 |
122 |
123 | #line 46 "..\..\0.5MainWindow.xaml"
124 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
125 | internal System.Windows.Controls.TextBox DSCBox;
126 |
127 | #line default
128 | #line hidden
129 |
130 |
131 | #line 50 "..\..\0.5MainWindow.xaml"
132 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
133 | internal System.Windows.Controls.DockPanel StatusPanel;
134 |
135 | #line default
136 | #line hidden
137 |
138 |
139 | #line 51 "..\..\0.5MainWindow.xaml"
140 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
141 | internal System.Windows.Controls.Primitives.StatusBar StatuBar;
142 |
143 | #line default
144 | #line hidden
145 |
146 |
147 | #line 53 "..\..\0.5MainWindow.xaml"
148 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
149 | internal System.Windows.Controls.TextBlock StatusText;
150 |
151 | #line default
152 | #line hidden
153 |
154 | private bool _contentLoaded;
155 |
156 | ///
157 | /// InitializeComponent
158 | ///
159 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
160 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
161 | public void InitializeComponent() {
162 | if (_contentLoaded) {
163 | return;
164 | }
165 | _contentLoaded = true;
166 | System.Uri resourceLocater = new System.Uri("/FoxDeployDSC_Designer;component/0.5mainwindow.xaml", System.UriKind.Relative);
167 |
168 | #line 1 "..\..\0.5MainWindow.xaml"
169 | System.Windows.Application.LoadComponent(this, resourceLocater);
170 |
171 | #line default
172 | #line hidden
173 | }
174 |
175 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
176 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
177 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
178 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
179 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
180 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
181 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
182 | switch (connectionId)
183 | {
184 | case 1:
185 | this.GridSplitterRow = ((System.Windows.Controls.RowDefinition)(target));
186 | return;
187 | case 2:
188 | this.GridSplitterRow2 = ((System.Windows.Controls.RowDefinition)(target));
189 | return;
190 | case 3:
191 | this.GridSplitterRow3 = ((System.Windows.Controls.RowDefinition)(target));
192 | return;
193 | case 4:
194 | this.groupBox = ((System.Windows.Controls.GroupBox)(target));
195 | return;
196 | case 5:
197 | this.Resources = ((System.Windows.Controls.WrapPanel)(target));
198 | return;
199 | case 6:
200 | this.Clear = ((System.Windows.Controls.Button)(target));
201 | return;
202 | case 7:
203 | this.tabControl = ((System.Windows.Controls.TabControl)(target));
204 | return;
205 | case 8:
206 | this.ConfName = ((System.Windows.Controls.TextBox)(target));
207 | return;
208 | case 9:
209 | this.Export = ((System.Windows.Controls.Button)(target));
210 | return;
211 | case 10:
212 | this.Clearv2 = ((System.Windows.Controls.Button)(target));
213 | return;
214 | case 11:
215 | this.DSCBox = ((System.Windows.Controls.TextBox)(target));
216 | return;
217 | case 12:
218 | this.StatusPanel = ((System.Windows.Controls.DockPanel)(target));
219 | return;
220 | case 13:
221 | this.StatuBar = ((System.Windows.Controls.Primitives.StatusBar)(target));
222 | return;
223 | case 14:
224 | this.StatusText = ((System.Windows.Controls.TextBlock)(target));
225 | return;
226 | }
227 | this._contentLoaded = true;
228 | }
229 | }
230 | }
231 |
232 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/App.g.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "6341CC3B7DF3394076E0A81579870575"
2 | //------------------------------------------------------------------------------
3 | //
4 | // This code was generated by a tool.
5 | // Runtime Version:4.0.30319.42000
6 | //
7 | // Changes to this file may cause incorrect behavior and will be lost if
8 | // the code is regenerated.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 | using WpfApplication1;
33 |
34 |
35 | namespace WpfApplication1 {
36 |
37 |
38 | ///
39 | /// App
40 | ///
41 | public partial class App : System.Windows.Application {
42 |
43 | ///
44 | /// InitializeComponent
45 | ///
46 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
47 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
48 | public void InitializeComponent() {
49 |
50 | #line 5 "..\..\App.xaml"
51 | this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
52 |
53 | #line default
54 | #line hidden
55 | }
56 |
57 | ///
58 | /// Application Entry Point.
59 | ///
60 | [System.STAThreadAttribute()]
61 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
62 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
63 | public static void Main() {
64 | WpfApplication1.App app = new WpfApplication1.App();
65 | app.InitializeComponent();
66 | app.Run();
67 | }
68 | }
69 | }
70 |
71 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/App.g.i.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "6341CC3B7DF3394076E0A81579870575"
2 | //------------------------------------------------------------------------------
3 | //
4 | // This code was generated by a tool.
5 | // Runtime Version:4.0.30319.42000
6 | //
7 | // Changes to this file may cause incorrect behavior and will be lost if
8 | // the code is regenerated.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 | using WpfApplication1;
33 |
34 |
35 | namespace WpfApplication1 {
36 |
37 |
38 | ///
39 | /// App
40 | ///
41 | public partial class App : System.Windows.Application {
42 |
43 | ///
44 | /// InitializeComponent
45 | ///
46 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
47 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
48 | public void InitializeComponent() {
49 |
50 | #line 5 "..\..\App.xaml"
51 | this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
52 |
53 | #line default
54 | #line hidden
55 | }
56 |
57 | ///
58 | /// Application Entry Point.
59 | ///
60 | [System.STAThreadAttribute()]
61 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
62 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
63 | public static void Main() {
64 | WpfApplication1.App app = new WpfApplication1.App();
65 | app.InitializeComponent();
66 | app.Run();
67 | }
68 | }
69 | }
70 |
71 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/AutoLoadingDev.g.i.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\AutoLoadingDev.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "DD544771A0E9E217BFCC4C8ED1D88C77"
2 | //------------------------------------------------------------------------------
3 | //
4 | // This code was generated by a tool.
5 | // Runtime Version:4.0.30319.42000
6 | //
7 | // Changes to this file may cause incorrect behavior and will be lost if
8 | // the code is regenerated.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using FoxDeployDSC_Designer;
13 | using System;
14 | using System.Diagnostics;
15 | using System.Windows;
16 | using System.Windows.Automation;
17 | using System.Windows.Controls;
18 | using System.Windows.Controls.Primitives;
19 | using System.Windows.Data;
20 | using System.Windows.Documents;
21 | using System.Windows.Ink;
22 | using System.Windows.Input;
23 | using System.Windows.Markup;
24 | using System.Windows.Media;
25 | using System.Windows.Media.Animation;
26 | using System.Windows.Media.Effects;
27 | using System.Windows.Media.Imaging;
28 | using System.Windows.Media.Media3D;
29 | using System.Windows.Media.TextFormatting;
30 | using System.Windows.Navigation;
31 | using System.Windows.Shapes;
32 | using System.Windows.Shell;
33 |
34 |
35 | namespace FoxDeployDSC_Designer {
36 |
37 |
38 | ///
39 | /// AutoLoadingDev
40 | ///
41 | public partial class AutoLoadingDev : System.Windows.Window, System.Windows.Markup.IComponentConnector {
42 |
43 |
44 | #line 10 "..\..\AutoLoadingDev.xaml"
45 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
46 | internal System.Windows.Controls.TabControl tabControl;
47 |
48 | #line default
49 | #line hidden
50 |
51 |
52 | #line 14 "..\..\AutoLoadingDev.xaml"
53 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
54 | internal System.Windows.Controls.ColumnDefinition ww;
55 |
56 | #line default
57 | #line hidden
58 |
59 |
60 | #line 17 "..\..\AutoLoadingDev.xaml"
61 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
62 | internal System.Windows.Controls.StackPanel ElementNames;
63 |
64 | #line default
65 | #line hidden
66 |
67 |
68 | #line 21 "..\..\AutoLoadingDev.xaml"
69 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
70 | internal System.Windows.Controls.StackPanel Elements;
71 |
72 | #line default
73 | #line hidden
74 |
75 |
76 | #line 31 "..\..\AutoLoadingDev.xaml"
77 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
78 | internal System.Windows.Controls.Button button;
79 |
80 | #line default
81 | #line hidden
82 |
83 | private bool _contentLoaded;
84 |
85 | ///
86 | /// InitializeComponent
87 | ///
88 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
89 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
90 | public void InitializeComponent() {
91 | if (_contentLoaded) {
92 | return;
93 | }
94 | _contentLoaded = true;
95 | System.Uri resourceLocater = new System.Uri("/FoxDeployDSC_Designer;component/autoloadingdev.xaml", System.UriKind.Relative);
96 |
97 | #line 1 "..\..\AutoLoadingDev.xaml"
98 | System.Windows.Application.LoadComponent(this, resourceLocater);
99 |
100 | #line default
101 | #line hidden
102 | }
103 |
104 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
105 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
106 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
107 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
108 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
109 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
110 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
111 | switch (connectionId)
112 | {
113 | case 1:
114 | this.tabControl = ((System.Windows.Controls.TabControl)(target));
115 | return;
116 | case 2:
117 | this.ww = ((System.Windows.Controls.ColumnDefinition)(target));
118 | return;
119 | case 3:
120 | this.ElementNames = ((System.Windows.Controls.StackPanel)(target));
121 | return;
122 | case 4:
123 | this.Elements = ((System.Windows.Controls.StackPanel)(target));
124 | return;
125 | case 5:
126 | this.button = ((System.Windows.Controls.Button)(target));
127 | return;
128 | }
129 | this._contentLoaded = true;
130 | }
131 | }
132 | }
133 |
134 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/DesignTimeResolveAssemblyReferences.cache:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/1RedOne/DSC-Designer/678809973724da31dc1a26ee7489aa86517063d2/XAML/FoxDeployDSCdesigner/obj/Debug/DesignTimeResolveAssemblyReferences.cache
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/1RedOne/DSC-Designer/678809973724da31dc1a26ee7489aa86517063d2/XAML/FoxDeployDSCdesigner/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/FoxDeploy DSC Designer.csproj.FileListAbsolute.txt:
--------------------------------------------------------------------------------
1 | C:\git\psDSCMan\XAML\FoxDeployDSCdesigner\bin\Debug\FoxDeployDSC_Designer.exe.config
2 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/FoxDeployDSC_Designer_MarkupCompile.i.cache:
--------------------------------------------------------------------------------
1 | FoxDeployDSC_Designer
2 |
3 |
4 | winexe
5 | C#
6 | .cs
7 | C:\git\psDSCMan\XAML\FoxDeployDSCdesigner\obj\Debug\
8 | FoxDeployDSC_Designer
9 | none
10 | false
11 | DEBUG;TRACE
12 | C:\git\psDSCMan\XAML\FoxDeployDSCdesigner\App.xaml
13 | 61472538212
14 |
15 | 14-1622204515
16 | 13738642453
17 | 0.1MainWindow.xaml;0.2MainWindow.xaml;0.3MainWindow.xaml;0.5MainWindow.xaml;AutoLoadingDev.xaml;TabDesigner.xaml;
18 |
19 | True
20 |
21 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/FoxDeployDSC_Designer_MarkupCompile.i.lref:
--------------------------------------------------------------------------------
1 |
2 |
3 | FC:\git\psDSCMan\XAML\FoxDeployDSCdesigner\AutoLoadingDev.xaml;;
4 |
5 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/MainWindow.g.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\MainWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "3BD6D30E765CDA497DAF08A4197BC821"
2 | //------------------------------------------------------------------------------
3 | //
4 | // This code was generated by a tool.
5 | // Runtime Version:4.0.30319.42000
6 | //
7 | // Changes to this file may cause incorrect behavior and will be lost if
8 | // the code is regenerated.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 | using WpfApplication1;
33 |
34 |
35 | namespace WpfApplication1 {
36 |
37 |
38 | ///
39 | /// MainWindow
40 | ///
41 | public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
42 |
43 |
44 | #line 11 "..\..\MainWindow.xaml"
45 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
46 | internal System.Windows.Controls.GroupBox groupBox;
47 |
48 | #line default
49 | #line hidden
50 |
51 |
52 | #line 12 "..\..\MainWindow.xaml"
53 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
54 | internal System.Windows.Controls.WrapPanel Resources;
55 |
56 | #line default
57 | #line hidden
58 |
59 |
60 | #line 24 "..\..\MainWindow.xaml"
61 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
62 | internal System.Windows.Controls.TabControl tabControl;
63 |
64 | #line default
65 | #line hidden
66 |
67 |
68 | #line 31 "..\..\MainWindow.xaml"
69 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
70 | internal System.Windows.Controls.Expander expander;
71 |
72 | #line default
73 | #line hidden
74 |
75 | private bool _contentLoaded;
76 |
77 | ///
78 | /// InitializeComponent
79 | ///
80 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
81 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
82 | public void InitializeComponent() {
83 | if (_contentLoaded) {
84 | return;
85 | }
86 | _contentLoaded = true;
87 | System.Uri resourceLocater = new System.Uri("/WpfApplication1;component/mainwindow.xaml", System.UriKind.Relative);
88 |
89 | #line 1 "..\..\MainWindow.xaml"
90 | System.Windows.Application.LoadComponent(this, resourceLocater);
91 |
92 | #line default
93 | #line hidden
94 | }
95 |
96 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
97 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
98 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
99 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
100 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
101 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
102 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
103 | switch (connectionId)
104 | {
105 | case 1:
106 | this.groupBox = ((System.Windows.Controls.GroupBox)(target));
107 | return;
108 | case 2:
109 | this.Resources = ((System.Windows.Controls.WrapPanel)(target));
110 | return;
111 | case 3:
112 | this.tabControl = ((System.Windows.Controls.TabControl)(target));
113 | return;
114 | case 4:
115 | this.expander = ((System.Windows.Controls.Expander)(target));
116 | return;
117 | }
118 | this._contentLoaded = true;
119 | }
120 | }
121 | }
122 |
123 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/MainWindow.g.i.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\MainWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "3BD6D30E765CDA497DAF08A4197BC821"
2 | //------------------------------------------------------------------------------
3 | //
4 | // This code was generated by a tool.
5 | // Runtime Version:4.0.30319.42000
6 | //
7 | // Changes to this file may cause incorrect behavior and will be lost if
8 | // the code is regenerated.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 | using WpfApplication1;
33 |
34 |
35 | namespace WpfApplication1 {
36 |
37 |
38 | ///
39 | /// MainWindow
40 | ///
41 | public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
42 |
43 |
44 | #line 11 "..\..\MainWindow.xaml"
45 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
46 | internal System.Windows.Controls.GroupBox groupBox;
47 |
48 | #line default
49 | #line hidden
50 |
51 |
52 | #line 12 "..\..\MainWindow.xaml"
53 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
54 | internal System.Windows.Controls.WrapPanel Resources;
55 |
56 | #line default
57 | #line hidden
58 |
59 |
60 | #line 24 "..\..\MainWindow.xaml"
61 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
62 | internal System.Windows.Controls.TabControl tabControl;
63 |
64 | #line default
65 | #line hidden
66 |
67 |
68 | #line 31 "..\..\MainWindow.xaml"
69 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
70 | internal System.Windows.Controls.Expander expander;
71 |
72 | #line default
73 | #line hidden
74 |
75 | private bool _contentLoaded;
76 |
77 | ///
78 | /// InitializeComponent
79 | ///
80 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
81 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
82 | public void InitializeComponent() {
83 | if (_contentLoaded) {
84 | return;
85 | }
86 | _contentLoaded = true;
87 | System.Uri resourceLocater = new System.Uri("/WpfApplication1;component/mainwindow.xaml", System.UriKind.Relative);
88 |
89 | #line 1 "..\..\MainWindow.xaml"
90 | System.Windows.Application.LoadComponent(this, resourceLocater);
91 |
92 | #line default
93 | #line hidden
94 | }
95 |
96 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
97 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
98 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
99 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
100 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
101 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
102 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
103 | switch (connectionId)
104 | {
105 | case 1:
106 | this.groupBox = ((System.Windows.Controls.GroupBox)(target));
107 | return;
108 | case 2:
109 | this.Resources = ((System.Windows.Controls.WrapPanel)(target));
110 | return;
111 | case 3:
112 | this.tabControl = ((System.Windows.Controls.TabControl)(target));
113 | return;
114 | case 4:
115 | this.expander = ((System.Windows.Controls.Expander)(target));
116 | return;
117 | }
118 | this._contentLoaded = true;
119 | }
120 | }
121 | }
122 |
123 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/TabDesigner.g.i.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\TabDesigner.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "20CFAEAFEF31508854DA87D3F762577A"
2 | //------------------------------------------------------------------------------
3 | //
4 | // This code was generated by a tool.
5 | // Runtime Version:4.0.30319.42000
6 | //
7 | // Changes to this file may cause incorrect behavior and will be lost if
8 | // the code is regenerated.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 | using WpfApplication1;
33 |
34 |
35 | namespace WpfApplication1 {
36 |
37 |
38 | ///
39 | /// Window3
40 | ///
41 | public partial class Window3 : System.Windows.Window, System.Windows.Markup.IComponentConnector {
42 |
43 |
44 | #line 10 "..\..\TabDesigner.xaml"
45 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
46 | internal System.Windows.Controls.TabControl tabControl;
47 |
48 | #line default
49 | #line hidden
50 |
51 |
52 | #line 14 "..\..\TabDesigner.xaml"
53 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
54 | internal System.Windows.Controls.ColumnDefinition ww;
55 |
56 | #line default
57 | #line hidden
58 |
59 |
60 | #line 17 "..\..\TabDesigner.xaml"
61 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
62 | internal System.Windows.Controls.StackPanel LeftStack;
63 |
64 | #line default
65 | #line hidden
66 |
67 |
68 | #line 20 "..\..\TabDesigner.xaml"
69 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
70 | internal System.Windows.Controls.StackPanel RightStack;
71 |
72 | #line default
73 | #line hidden
74 |
75 | private bool _contentLoaded;
76 |
77 | ///
78 | /// InitializeComponent
79 | ///
80 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
81 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
82 | public void InitializeComponent() {
83 | if (_contentLoaded) {
84 | return;
85 | }
86 | _contentLoaded = true;
87 | System.Uri resourceLocater = new System.Uri("/FoxDeployDSC_Designer;component/tabdesigner.xaml", System.UriKind.Relative);
88 |
89 | #line 1 "..\..\TabDesigner.xaml"
90 | System.Windows.Application.LoadComponent(this, resourceLocater);
91 |
92 | #line default
93 | #line hidden
94 | }
95 |
96 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
97 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
98 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
99 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
100 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
101 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
102 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
103 | switch (connectionId)
104 | {
105 | case 1:
106 | this.tabControl = ((System.Windows.Controls.TabControl)(target));
107 | return;
108 | case 2:
109 | this.ww = ((System.Windows.Controls.ColumnDefinition)(target));
110 | return;
111 | case 3:
112 | this.LeftStack = ((System.Windows.Controls.StackPanel)(target));
113 | return;
114 | case 4:
115 | this.RightStack = ((System.Windows.Controls.StackPanel)(target));
116 | return;
117 | }
118 | this._contentLoaded = true;
119 | }
120 | }
121 | }
122 |
123 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/1RedOne/DSC-Designer/678809973724da31dc1a26ee7489aa86517063d2/XAML/FoxDeployDSCdesigner/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/1RedOne/DSC-Designer/678809973724da31dc1a26ee7489aa86517063d2/XAML/FoxDeployDSCdesigner/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/1RedOne/DSC-Designer/678809973724da31dc1a26ee7489aa86517063d2/XAML/FoxDeployDSCdesigner/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/1RedOne/DSC-Designer/678809973724da31dc1a26ee7489aa86517063d2/XAML/FoxDeployDSCdesigner/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/Window1.baml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/1RedOne/DSC-Designer/678809973724da31dc1a26ee7489aa86517063d2/XAML/FoxDeployDSCdesigner/obj/Debug/Window1.baml
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/Window1.g.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\Window1.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "26E99C415CDD6E67A0A3021D0352828B"
2 | //------------------------------------------------------------------------------
3 | //
4 | // This code was generated by a tool.
5 | // Runtime Version:4.0.30319.42000
6 | //
7 | // Changes to this file may cause incorrect behavior and will be lost if
8 | // the code is regenerated.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 |
33 |
34 | namespace WpfTutorialSamples.Panels {
35 |
36 |
37 | ///
38 | /// GridColRowSpan
39 | ///
40 | public partial class GridColRowSpan : System.Windows.Window, System.Windows.Markup.IComponentConnector {
41 |
42 |
43 | #line 14 "..\..\Window1.xaml"
44 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
45 | internal System.Windows.Controls.GroupBox groupBox;
46 |
47 | #line default
48 | #line hidden
49 |
50 |
51 | #line 15 "..\..\Window1.xaml"
52 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
53 | internal System.Windows.Controls.WrapPanel Resources;
54 |
55 | #line default
56 | #line hidden
57 |
58 |
59 | #line 27 "..\..\Window1.xaml"
60 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
61 | internal System.Windows.Controls.TabControl tabControl;
62 |
63 | #line default
64 | #line hidden
65 |
66 |
67 | #line 35 "..\..\Window1.xaml"
68 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
69 | internal System.Windows.Controls.RichTextBox richTextBox;
70 |
71 | #line default
72 | #line hidden
73 |
74 | private bool _contentLoaded;
75 |
76 | ///
77 | /// InitializeComponent
78 | ///
79 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
80 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
81 | public void InitializeComponent() {
82 | if (_contentLoaded) {
83 | return;
84 | }
85 | _contentLoaded = true;
86 | System.Uri resourceLocater = new System.Uri("/WpfApplication1;component/window1.xaml", System.UriKind.Relative);
87 |
88 | #line 1 "..\..\Window1.xaml"
89 | System.Windows.Application.LoadComponent(this, resourceLocater);
90 |
91 | #line default
92 | #line hidden
93 | }
94 |
95 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
96 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
97 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
98 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
99 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
100 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
101 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
102 | switch (connectionId)
103 | {
104 | case 1:
105 | this.groupBox = ((System.Windows.Controls.GroupBox)(target));
106 | return;
107 | case 2:
108 | this.Resources = ((System.Windows.Controls.WrapPanel)(target));
109 | return;
110 | case 3:
111 | this.tabControl = ((System.Windows.Controls.TabControl)(target));
112 | return;
113 | case 4:
114 | this.richTextBox = ((System.Windows.Controls.RichTextBox)(target));
115 | return;
116 | }
117 | this._contentLoaded = true;
118 | }
119 | }
120 | }
121 |
122 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/Window1.g.i.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\Window1.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "26E99C415CDD6E67A0A3021D0352828B"
2 | //------------------------------------------------------------------------------
3 | //
4 | // This code was generated by a tool.
5 | // Runtime Version:4.0.30319.42000
6 | //
7 | // Changes to this file may cause incorrect behavior and will be lost if
8 | // the code is regenerated.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 |
33 |
34 | namespace WpfTutorialSamples.Panels {
35 |
36 |
37 | ///
38 | /// GridColRowSpan
39 | ///
40 | public partial class GridColRowSpan : System.Windows.Window, System.Windows.Markup.IComponentConnector {
41 |
42 |
43 | #line 14 "..\..\Window1.xaml"
44 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
45 | internal System.Windows.Controls.GroupBox groupBox;
46 |
47 | #line default
48 | #line hidden
49 |
50 |
51 | #line 15 "..\..\Window1.xaml"
52 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
53 | internal System.Windows.Controls.DockPanel Resources;
54 |
55 | #line default
56 | #line hidden
57 |
58 |
59 | #line 27 "..\..\Window1.xaml"
60 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
61 | internal System.Windows.Controls.TabControl tabControl;
62 |
63 | #line default
64 | #line hidden
65 |
66 |
67 | #line 35 "..\..\Window1.xaml"
68 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
69 | internal System.Windows.Controls.RichTextBox richTextBox;
70 |
71 | #line default
72 | #line hidden
73 |
74 | private bool _contentLoaded;
75 |
76 | ///
77 | /// InitializeComponent
78 | ///
79 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
80 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
81 | public void InitializeComponent() {
82 | if (_contentLoaded) {
83 | return;
84 | }
85 | _contentLoaded = true;
86 | System.Uri resourceLocater = new System.Uri("/WpfApplication1;component/window1.xaml", System.UriKind.Relative);
87 |
88 | #line 1 "..\..\Window1.xaml"
89 | System.Windows.Application.LoadComponent(this, resourceLocater);
90 |
91 | #line default
92 | #line hidden
93 | }
94 |
95 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
96 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
97 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
98 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
99 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
100 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
101 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
102 | switch (connectionId)
103 | {
104 | case 1:
105 | this.groupBox = ((System.Windows.Controls.GroupBox)(target));
106 | return;
107 | case 2:
108 | this.Resources = ((System.Windows.Controls.DockPanel)(target));
109 | return;
110 | case 3:
111 | this.tabControl = ((System.Windows.Controls.TabControl)(target));
112 | return;
113 | case 4:
114 | this.richTextBox = ((System.Windows.Controls.RichTextBox)(target));
115 | return;
116 | }
117 | this._contentLoaded = true;
118 | }
119 | }
120 | }
121 |
122 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/Window2.g.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\Window2.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "76517663F357FAE0961D473786F4C9B5"
2 | //------------------------------------------------------------------------------
3 | //
4 | // This code was generated by a tool.
5 | // Runtime Version:4.0.30319.42000
6 | //
7 | // Changes to this file may cause incorrect behavior and will be lost if
8 | // the code is regenerated.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 | using WpfApplication1;
33 |
34 |
35 | namespace WpfApplication1 {
36 |
37 |
38 | ///
39 | /// MainWindow
40 | ///
41 | public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
42 |
43 |
44 | #line 10 "..\..\Window2.xaml"
45 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
46 | internal System.Windows.Controls.GroupBox groupBox;
47 |
48 | #line default
49 | #line hidden
50 |
51 |
52 | #line 11 "..\..\Window2.xaml"
53 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
54 | internal System.Windows.Controls.WrapPanel Resources;
55 |
56 | #line default
57 | #line hidden
58 |
59 |
60 | #line 19 "..\..\Window2.xaml"
61 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
62 | internal System.Windows.Controls.Button Clear;
63 |
64 | #line default
65 | #line hidden
66 |
67 |
68 | #line 23 "..\..\Window2.xaml"
69 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
70 | internal System.Windows.Controls.TabControl tabControl;
71 |
72 | #line default
73 | #line hidden
74 |
75 | private bool _contentLoaded;
76 |
77 | ///
78 | /// InitializeComponent
79 | ///
80 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
81 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
82 | public void InitializeComponent() {
83 | if (_contentLoaded) {
84 | return;
85 | }
86 | _contentLoaded = true;
87 | System.Uri resourceLocater = new System.Uri("/WpfApplication1;component/window2.xaml", System.UriKind.Relative);
88 |
89 | #line 1 "..\..\Window2.xaml"
90 | System.Windows.Application.LoadComponent(this, resourceLocater);
91 |
92 | #line default
93 | #line hidden
94 | }
95 |
96 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
97 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
98 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
99 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
100 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
101 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
102 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
103 | switch (connectionId)
104 | {
105 | case 1:
106 | this.groupBox = ((System.Windows.Controls.GroupBox)(target));
107 | return;
108 | case 2:
109 | this.Resources = ((System.Windows.Controls.WrapPanel)(target));
110 | return;
111 | case 3:
112 | this.Clear = ((System.Windows.Controls.Button)(target));
113 | return;
114 | case 4:
115 | this.tabControl = ((System.Windows.Controls.TabControl)(target));
116 | return;
117 | }
118 | this._contentLoaded = true;
119 | }
120 | }
121 | }
122 |
123 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/Window2.g.i.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\Window2.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "76517663F357FAE0961D473786F4C9B5"
2 | //------------------------------------------------------------------------------
3 | //
4 | // This code was generated by a tool.
5 | // Runtime Version:4.0.30319.42000
6 | //
7 | // Changes to this file may cause incorrect behavior and will be lost if
8 | // the code is regenerated.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 |
33 |
34 | namespace WpfTutorialSamples.Panels {
35 |
36 |
37 | ///
38 | /// GridColRowSpan
39 | ///
40 | public partial class GridColRowSpan : System.Windows.Window, System.Windows.Markup.IComponentConnector {
41 |
42 |
43 | #line 11 "..\..\Window2.xaml"
44 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
45 | internal System.Windows.Controls.DockPanel DockPanel1;
46 |
47 | #line default
48 | #line hidden
49 |
50 |
51 | #line 13 "..\..\Window2.xaml"
52 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
53 | internal System.Windows.Controls.GridSplitter GridSplitter1;
54 |
55 | #line default
56 | #line hidden
57 |
58 |
59 | #line 14 "..\..\Window2.xaml"
60 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
61 | internal System.Windows.Controls.Grid Grid1;
62 |
63 | #line default
64 | #line hidden
65 |
66 | private bool _contentLoaded;
67 |
68 | ///
69 | /// InitializeComponent
70 | ///
71 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
72 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
73 | public void InitializeComponent() {
74 | if (_contentLoaded) {
75 | return;
76 | }
77 | _contentLoaded = true;
78 | System.Uri resourceLocater = new System.Uri("/WpfApplication1;component/window2.xaml", System.UriKind.Relative);
79 |
80 | #line 1 "..\..\Window2.xaml"
81 | System.Windows.Application.LoadComponent(this, resourceLocater);
82 |
83 | #line default
84 | #line hidden
85 | }
86 |
87 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
88 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
89 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
90 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
91 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
92 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
93 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
94 | switch (connectionId)
95 | {
96 | case 1:
97 | this.DockPanel1 = ((System.Windows.Controls.DockPanel)(target));
98 | return;
99 | case 2:
100 | this.GridSplitter1 = ((System.Windows.Controls.GridSplitter)(target));
101 | return;
102 | case 3:
103 | this.Grid1 = ((System.Windows.Controls.Grid)(target));
104 | return;
105 | }
106 | this._contentLoaded = true;
107 | }
108 | }
109 | }
110 |
111 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/Window3.g.i.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\Window3.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "140588B6161F55712C4C67882AC412A6"
2 | //------------------------------------------------------------------------------
3 | //
4 | // This code was generated by a tool.
5 | // Runtime Version:4.0.30319.42000
6 | //
7 | // Changes to this file may cause incorrect behavior and will be lost if
8 | // the code is regenerated.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 | using WpfApplication1;
33 |
34 |
35 | namespace WpfApplication1 {
36 |
37 |
38 | ///
39 | /// Window3
40 | ///
41 | public partial class Window3 : System.Windows.Window, System.Windows.Markup.IComponentConnector {
42 |
43 | private bool _contentLoaded;
44 |
45 | ///
46 | /// InitializeComponent
47 | ///
48 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
49 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
50 | public void InitializeComponent() {
51 | if (_contentLoaded) {
52 | return;
53 | }
54 | _contentLoaded = true;
55 | System.Uri resourceLocater = new System.Uri("/WpfApplication1;component/window3.xaml", System.UriKind.Relative);
56 |
57 | #line 1 "..\..\Window3.xaml"
58 | System.Windows.Application.LoadComponent(this, resourceLocater);
59 |
60 | #line default
61 | #line hidden
62 | }
63 |
64 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
65 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
66 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
67 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
68 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
69 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
70 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
71 | this._contentLoaded = true;
72 | }
73 | }
74 | }
75 |
76 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/WpfApplication1.csproj.FileListAbsolute.txt:
--------------------------------------------------------------------------------
1 | c:\users\stephen\documents\visual studio 2015\Projects\WpfApplication1\WpfApplication1\bin\Debug\WpfApplication1.exe.config
2 | c:\users\stephen\documents\visual studio 2015\Projects\WpfApplication1\WpfApplication1\obj\Debug\WpfApplication1.csprojResolveAssemblyReference.cache
3 | c:\users\stephen\documents\visual studio 2015\Projects\WpfApplication1\WpfApplication1\obj\Debug\Window1.baml
4 | c:\users\stephen\documents\visual studio 2015\Projects\WpfApplication1\WpfApplication1\obj\Debug\MainWindow.g.cs
5 | c:\users\stephen\documents\visual studio 2015\Projects\WpfApplication1\WpfApplication1\obj\Debug\Window1.g.cs
6 | c:\users\stephen\documents\visual studio 2015\Projects\WpfApplication1\WpfApplication1\obj\Debug\App.g.cs
7 | c:\users\stephen\documents\visual studio 2015\Projects\WpfApplication1\WpfApplication1\obj\Debug\WpfApplication1_MarkupCompile.cache
8 | c:\users\stephen\documents\visual studio 2015\Projects\WpfApplication1\WpfApplication1\obj\Debug\WpfApplication1_MarkupCompile.lref
9 | c:\users\stephen\documents\visual studio 2015\Projects\WpfApplication1\WpfApplication1\obj\Debug\Window2.g.cs
10 | C:\git\psDSCMan\XAML\WpfApplication1\bin\Debug\WpfApplication1.exe.config
11 | C:\git\psDSCMan\XAML\WpfApplication1\obj\Debug\WpfApplication1.csprojResolveAssemblyReference.cache
12 | C:\git\psDSCMan\XAML\WpfApplication1\obj\Debug\beta.baml
13 | C:\git\psDSCMan\XAML\WpfApplication1\obj\Debug\0.3.baml
14 | C:\git\psDSCMan\XAML\WpfApplication1\obj\Debug\MainWindow.g.cs
15 | C:\git\psDSCMan\XAML\WpfApplication1\obj\Debug\beta.g.cs
16 | C:\git\psDSCMan\XAML\WpfApplication1\obj\Debug\0.3.g.cs
17 | C:\git\psDSCMan\XAML\WpfApplication1\obj\Debug\App.g.cs
18 | C:\git\psDSCMan\XAML\WpfApplication1\obj\Debug\WpfApplication1_MarkupCompile.cache
19 | C:\git\psDSCMan\XAML\WpfApplication1\obj\Debug\WpfApplication1_MarkupCompile.lref
20 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/WpfApplication1.csprojResolveAssemblyReference.cache:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/1RedOne/DSC-Designer/678809973724da31dc1a26ee7489aa86517063d2/XAML/FoxDeployDSCdesigner/obj/Debug/WpfApplication1.csprojResolveAssemblyReference.cache
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/WpfApplication1_MarkupCompile.cache:
--------------------------------------------------------------------------------
1 | WpfApplication1
2 |
3 |
4 | winexe
5 | C#
6 | .cs
7 | C:\git\psDSCMan\XAML\WpfApplication1\obj\Debug\
8 | WpfApplication1
9 | none
10 | false
11 | DEBUG;TRACE
12 | C:\git\psDSCMan\XAML\WpfApplication1\App.xaml
13 | 31703174731
14 |
15 | 7578749413
16 | 13738642453
17 | MainWindow.xaml;beta.xaml;0.3.xaml;
18 |
19 | True
20 |
21 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/WpfApplication1_MarkupCompile.i.cache:
--------------------------------------------------------------------------------
1 | WpfApplication1
2 |
3 |
4 | winexe
5 | C#
6 | .cs
7 | C:\git\psDSCMan\XAML\WpfApplication1\obj\Debug\
8 | WpfApplication1
9 | none
10 | false
11 | DEBUG;TRACE
12 | C:\git\psDSCMan\XAML\WpfApplication1\App.xaml
13 | 51014691209
14 |
15 | 132003197768
16 | 13738642453
17 | 0.1MainWindow.xaml;0.2MainWindow.xaml;0.3MainWindow.xaml;0.5MainWindow.xaml;TabDesigner.xaml;
18 |
19 | False
20 |
21 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/WpfApplication1_MarkupCompile.lref:
--------------------------------------------------------------------------------
1 |
2 |
3 | FC:\git\psDSCMan\XAML\WpfApplication1\MainWindow.xaml;;
4 |
5 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/beta.baml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/1RedOne/DSC-Designer/678809973724da31dc1a26ee7489aa86517063d2/XAML/FoxDeployDSCdesigner/obj/Debug/beta.baml
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/beta.g.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\beta.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "526CAE7F7369579C97124FE503E78E2D"
2 | //------------------------------------------------------------------------------
3 | //
4 | // This code was generated by a tool.
5 | // Runtime Version:4.0.30319.42000
6 | //
7 | // Changes to this file may cause incorrect behavior and will be lost if
8 | // the code is regenerated.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 |
33 |
34 | namespace WpfTutorialSamples.Panels {
35 |
36 |
37 | ///
38 | /// GridColRowSpan
39 | ///
40 | public partial class GridColRowSpan : System.Windows.Window, System.Windows.Markup.IComponentConnector {
41 |
42 |
43 | #line 14 "..\..\beta.xaml"
44 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
45 | internal System.Windows.Controls.GroupBox groupBox;
46 |
47 | #line default
48 | #line hidden
49 |
50 |
51 | #line 15 "..\..\beta.xaml"
52 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
53 | internal System.Windows.Controls.DockPanel Resources;
54 |
55 | #line default
56 | #line hidden
57 |
58 |
59 | #line 27 "..\..\beta.xaml"
60 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
61 | internal System.Windows.Controls.TabControl tabControl;
62 |
63 | #line default
64 | #line hidden
65 |
66 |
67 | #line 35 "..\..\beta.xaml"
68 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
69 | internal System.Windows.Controls.RichTextBox richTextBox;
70 |
71 | #line default
72 | #line hidden
73 |
74 | private bool _contentLoaded;
75 |
76 | ///
77 | /// InitializeComponent
78 | ///
79 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
80 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
81 | public void InitializeComponent() {
82 | if (_contentLoaded) {
83 | return;
84 | }
85 | _contentLoaded = true;
86 | System.Uri resourceLocater = new System.Uri("/WpfApplication1;component/beta.xaml", System.UriKind.Relative);
87 |
88 | #line 1 "..\..\beta.xaml"
89 | System.Windows.Application.LoadComponent(this, resourceLocater);
90 |
91 | #line default
92 | #line hidden
93 | }
94 |
95 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
96 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
97 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
98 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
99 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
100 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
101 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
102 | switch (connectionId)
103 | {
104 | case 1:
105 | this.groupBox = ((System.Windows.Controls.GroupBox)(target));
106 | return;
107 | case 2:
108 | this.Resources = ((System.Windows.Controls.DockPanel)(target));
109 | return;
110 | case 3:
111 | this.tabControl = ((System.Windows.Controls.TabControl)(target));
112 | return;
113 | case 4:
114 | this.richTextBox = ((System.Windows.Controls.RichTextBox)(target));
115 | return;
116 | }
117 | this._contentLoaded = true;
118 | }
119 | }
120 | }
121 |
122 |
--------------------------------------------------------------------------------
/XAML/FoxDeployDSCdesigner/obj/Debug/beta.g.i.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\beta.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "526CAE7F7369579C97124FE503E78E2D"
2 | //------------------------------------------------------------------------------
3 | //
4 | // This code was generated by a tool.
5 | // Runtime Version:4.0.30319.42000
6 | //
7 | // Changes to this file may cause incorrect behavior and will be lost if
8 | // the code is regenerated.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 |
33 |
34 | namespace WpfTutorialSamples.Panels {
35 |
36 |
37 | ///
38 | /// GridColRowSpan
39 | ///
40 | public partial class GridColRowSpan : System.Windows.Window, System.Windows.Markup.IComponentConnector {
41 |
42 |
43 | #line 14 "..\..\beta.xaml"
44 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
45 | internal System.Windows.Controls.GroupBox groupBox;
46 |
47 | #line default
48 | #line hidden
49 |
50 |
51 | #line 15 "..\..\beta.xaml"
52 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
53 | internal System.Windows.Controls.DockPanel Resources;
54 |
55 | #line default
56 | #line hidden
57 |
58 |
59 | #line 27 "..\..\beta.xaml"
60 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
61 | internal System.Windows.Controls.TabControl tabControl;
62 |
63 | #line default
64 | #line hidden
65 |
66 |
67 | #line 35 "..\..\beta.xaml"
68 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
69 | internal System.Windows.Controls.RichTextBox richTextBox;
70 |
71 | #line default
72 | #line hidden
73 |
74 | private bool _contentLoaded;
75 |
76 | ///
77 | /// InitializeComponent
78 | ///
79 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
80 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
81 | public void InitializeComponent() {
82 | if (_contentLoaded) {
83 | return;
84 | }
85 | _contentLoaded = true;
86 | System.Uri resourceLocater = new System.Uri("/WpfApplication1;component/beta.xaml", System.UriKind.Relative);
87 |
88 | #line 1 "..\..\beta.xaml"
89 | System.Windows.Application.LoadComponent(this, resourceLocater);
90 |
91 | #line default
92 | #line hidden
93 | }
94 |
95 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
96 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
97 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
98 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
99 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
100 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
101 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
102 | switch (connectionId)
103 | {
104 | case 1:
105 | this.groupBox = ((System.Windows.Controls.GroupBox)(target));
106 | return;
107 | case 2:
108 | this.Resources = ((System.Windows.Controls.DockPanel)(target));
109 | return;
110 | case 3:
111 | this.tabControl = ((System.Windows.Controls.TabControl)(target));
112 | return;
113 | case 4:
114 | this.richTextBox = ((System.Windows.Controls.RichTextBox)(target));
115 | return;
116 | }
117 | this._contentLoaded = true;
118 | }
119 | }
120 | }
121 |
122 |
--------------------------------------------------------------------------------
/history/0.1.ps1:
--------------------------------------------------------------------------------
1 | #whats working
2 | # enumerate DSC Resources, add checkboxes for them to a list. clicking the list adds a tab of matching name
3 | # basic two column view with manual columns (BAD)
4 | # better to have dynamic columns
5 |
6 | $inputXML = @"
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 | "@
40 |
41 | $inputXML = $inputXML -replace 'mc:Ignorable="d"','' -replace "x:N",'N' -replace '^:D
55 | Write-Host "Unable to load Windows.Markup.XamlReader. Double-check syntax and ensure .net is installed."
56 | }
57 |
58 | #===========================================================================
59 | # Store Form Objects In PowerShell
60 | #===========================================================================
61 |
62 | $xaml.SelectNodes("//*[@Name]") | %{Set-Variable -Name "WPF$($_.Name)" -Value $Form.FindName($_.Name)}
63 |
64 | Function Get-FormVariables{
65 | if ($global:ReadmeDisplay -ne $true){Write-host "If you need to reference this display again, run Get-FormVariables" -ForegroundColor Yellow;$global:ReadmeDisplay=$true}
66 | write-host "Found the following interactable elements from our form" -ForegroundColor Cyan
67 | get-variable WPF*
68 | }
69 |
70 | Get-FormVariables
71 |
72 | #===========================================================================
73 | # Use this space to add code to the various form elements in your GUI
74 | #===========================================================================
75 |
76 | $resources = Get-DscResource
77 |
78 | ForEach ($resource in $resources){
79 | $newCheckBox = New-Object System.Windows.Controls.CheckBox
80 | $newCheckBox.Name = $resource.Name
81 | $newCheckBox.Content = $resource.Name
82 | $newCheckBox.Background = "White"
83 | $newCheckBox.Width = '137'
84 | $newCheckBox.Add_checked({
85 | $TabName = $this.Name
86 | $tab = New-Object System.Windows.Controls.TabItem
87 | $tab.Name = "$($TabName)Tab"
88 | $tab.Header = $TabName
89 | $WPFtabControl.AddChild($tab)
90 | })
91 |
92 | $newCheckBox.Add_unchecked({
93 | $WPFtabControl.Items.Remove(($WPFtabControl.Items | Where Header -eq $this.Name))
94 | })
95 |
96 | [void]$WPFResources.Children.Add($newCheckBox)
97 |
98 | }
99 |
100 | $WPFClear.Add_Click({
101 | $WPFResources.Children | ? Name -ne Clear | % {$_.IsChecked = $False}
102 | })
103 | # for ($i =0; $i -lt $WPFResources.Children.Count; $i++){
104 | # $WPFResources.children[$i] | %{
105 | # "setting up event handler for $($_.Name)"
106 | # $TabName = $WPFResources.children[$i].Name
107 | # $_.Add_Click({
108 | # $tab = New-Object System.Windows.Controls.TabItem
109 | # $tab.Name = "$($TabName)Tab"
110 | # $tab.Header = "$($TabName)"
111 | # $WPFtabControl.AddChild($tab)
112 | # })
113 | # }
114 | # }
115 | #Reference
116 |
117 | #Remove an item when unchecked
118 | #$WPFtabControl.Items.Remove($WPFtabControl.Items[0])
119 |
120 | #Setting the text of a text box to the current PC name
121 | #$WPFtextBox.Text = $env:COMPUTERNAME
122 |
123 | #Adding code to a button, so that when clicked, it pings a system
124 | # $WPFbutton.Add_Click({ Test-connection -count 1 -ComputerName $WPFtextBox.Text
125 | # })
126 | #===========================================================================
127 | # Shows the form
128 | #===========================================================================
129 | write-host "To show the form, run the following" -ForegroundColor Cyan
130 | '$Form.ShowDialog() | out-null'
131 |
132 |
133 |
--------------------------------------------------------------------------------
/history/0.2.ps1:
--------------------------------------------------------------------------------
1 | # What's working
2 | # + clicking a check box now adds the DSC configuration to a tab, but you can't edit it ???
3 | # - removed the wonky sizing and now handle sizing using a grid
4 | # - super long delay when clicking a button, need to find a better way to handle that
5 | # - need to remove the expander box and instead just display the compiled config below
6 |
7 | $inputXML = @"
8 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 | "@
56 |
57 | $inputXML = $inputXML -replace 'mc:Ignorable="d"','' -replace "x:N",'N' -replace '^:D
71 | Write-Host "Unable to load Windows.Markup.XamlReader. Double-check syntax and ensure .net is installed."
72 | }
73 |
74 | #===========================================================================
75 | # Store Form Objects In PowerShell
76 | #===========================================================================
77 |
78 | $xaml.SelectNodes("//*[@Name]") | %{Set-Variable -Name "WPF$($_.Name)" -Value $Form.FindName($_.Name)}
79 |
80 | Function Get-FormVariables{
81 | if ($global:ReadmeDisplay -ne $true){Write-host "If you need to reference this display again, run Get-FormVariables" -ForegroundColor Yellow;$global:ReadmeDisplay=$true}
82 | write-host "Found the following interactable elements from our form" -ForegroundColor Cyan
83 | get-variable WPF*
84 | }
85 |
86 | Get-FormVariables
87 |
88 | #===========================================================================
89 | # Use this space to add code to the various form elements in your GUI
90 | #===========================================================================
91 |
92 | $resources = Get-DscResource
93 |
94 | ForEach ($resource in $resources){
95 | $newCheckBox = New-Object System.Windows.Controls.CheckBox
96 | $newCheckBox.Name = $resource.Name
97 | $newCheckBox.Content = $resource.Name
98 | $newCheckBox.Background = "White"
99 | $newCheckBox.Width = '137'
100 | $newCheckBox.Add_checked({
101 | $TabName = $this.Name
102 | $tab = New-Object System.Windows.Controls.TabItem
103 | $tab.Name = "$($TabName)Tab"
104 | $tab.Header = $TabName
105 | $tab.Content = Get-DscResource $this.Name -Syntax
106 | $WPFtabControl.AddChild($tab)
107 | })
108 |
109 | $newCheckBox.Add_unchecked({
110 | $WPFtabControl.Items.Remove(($WPFtabControl.Items | Where Header -eq $this.Name))
111 | })
112 |
113 | [void]$WPFResources.Children.Add($newCheckBox)
114 |
115 | }
116 |
117 | $WPFClear.Add_Click({
118 | $WPFResources.Children | ? Name -ne Clear | % {$_.IsChecked = $False}
119 | })
120 | # for ($i =0; $i -lt $WPFResources.Children.Count; $i++){
121 | # $WPFResources.children[$i] | %{
122 | # "setting up event handler for $($_.Name)"
123 | # $TabName = $WPFResources.children[$i].Name
124 | # $_.Add_Click({
125 | # $tab = New-Object System.Windows.Controls.TabItem
126 | # $tab.Name = "$($TabName)Tab"
127 | # $tab.Header = "$($TabName)"
128 | # $WPFtabControl.AddChild($tab)
129 | # })
130 | # }
131 | # }
132 | #Reference
133 |
134 | #Remove an item when unchecked
135 | #$WPFtabControl.Items.Remove($WPFtabControl.Items[0])
136 |
137 | #Setting the text of a text box to the current PC name
138 | #$WPFtextBox.Text = $env:COMPUTERNAME
139 |
140 | #Adding code to a button, so that when clicked, it pings a system
141 | # $WPFbutton.Add_Click({ Test-connection -count 1 -ComputerName $WPFtextBox.Text
142 | # })
143 | #===========================================================================
144 | # Shows the form
145 | #===========================================================================
146 | write-host "To show the form, run the following" -ForegroundColor Cyan
147 | '$Form.ShowDialog() | out-null'
148 |
149 |
150 | $Form.ShowDialog() | out-null
--------------------------------------------------------------------------------
/history/0.3.ps1:
--------------------------------------------------------------------------------
1 | # What's working
2 | # +
3 | # -
4 | # -
5 | # -
6 |
7 | $inputXML = @"
8 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 | "@
57 |
58 | $inputXML = $inputXML -replace 'mc:Ignorable="d"','' -replace "x:N",'N' -replace '^:D
72 | Write-Host "Unable to load Windows.Markup.XamlReader. Double-check syntax and ensure .net is installed."
73 | }
74 |
75 | #===========================================================================
76 | # Store Form Objects In PowerShell
77 | #===========================================================================
78 |
79 | $xaml.SelectNodes("//*[@Name]") | %{Set-Variable -Name "WPF$($_.Name)" -Value $Form.FindName($_.Name)}
80 |
81 | Function Get-FormVariables{
82 | if ($global:ReadmeDisplay -ne $true){Write-host "If you need to reference this display again, run Get-FormVariables" -ForegroundColor Yellow;$global:ReadmeDisplay=$true}
83 | write-host "Found the following interactable elements from our form" -ForegroundColor Cyan
84 | get-variable WPF*
85 | }
86 |
87 | Get-FormVariables
88 |
89 | #===========================================================================
90 | # Use this space to add code to the various form elements in your GUI
91 | #===========================================================================
92 |
93 | #retrieve all DSC resources in the background
94 | $Runspace = [runspacefactory]::CreateRunspace()
95 |
96 | $PowerShell = [PowerShell]::Create()
97 |
98 | $PowerShell.runspace = $Runspace
99 |
100 | $Runspace.Open()
101 |
102 | [void]$PowerShell.AddScript({
103 |
104 | Get-DscResource
105 |
106 | })
107 |
108 | if ($AsyncObject.IsCompleted -eq ($true)){Write-host "COMPLETED"}
109 | else {write-host "Waiting for DSC resources to come back";start-sleep -Milliseconds 500}
110 | $AsyncObject = $PowerShell.BeginInvoke()
111 | $Data = $PowerShell.EndInvoke($AsyncObject)
112 |
113 | $resources = $Data
114 |
115 | ForEach ($resource in $resources){
116 | $newCheckBox = New-Object System.Windows.Controls.CheckBox
117 | $newCheckBox.Name = $resource.Name
118 | $newCheckBox.Content = $resource.Name
119 | $newCheckBox.Background = "White"
120 | $newCheckBox.Width = '137'
121 | $newCheckBox.Add_checked({
122 | $TabName = $this.Name
123 | $tab = New-Object System.Windows.Controls.TabItem
124 | $tab.Name = "$($TabName)Tab"
125 | $tab.Header = $TabName
126 | $tab.Content = Get-DscResource $this.Name -Syntax
127 | $WPFtabControl.AddChild($tab)
128 | })
129 |
130 | $newCheckBox.Add_unchecked({
131 | $WPFtabControl.Items.Remove(($WPFtabControl.Items | Where Header -eq $this.Name))
132 | })
133 |
134 | [void]$WPFResources.Children.Add($newCheckBox)
135 |
136 | }
137 |
138 | $WPFClear.Add_Click({
139 | $WPFResources.Children | ? Name -ne Clear | % {$_.IsChecked = $False}
140 | })
141 | # for ($i =0; $i -lt $WPFResources.Children.Count; $i++){
142 | # $WPFResources.children[$i] | %{
143 | # "setting up event handler for $($_.Name)"
144 | # $TabName = $WPFResources.children[$i].Name
145 | # $_.Add_Click({
146 | # $tab = New-Object System.Windows.Controls.TabItem
147 | # $tab.Name = "$($TabName)Tab"
148 | # $tab.Header = "$($TabName)"
149 | # $WPFtabControl.AddChild($tab)
150 | # })
151 | # }
152 | # }
153 | #Reference
154 |
155 | #Remove an item when unchecked
156 | #$WPFtabControl.Items.Remove($WPFtabControl.Items[0])
157 |
158 | #Setting the text of a text box to the current PC name
159 | #$WPFtextBox.Text = $env:COMPUTERNAME
160 |
161 | #Adding code to a button, so that when clicked, it pings a system
162 | # $WPFbutton.Add_Click({ Test-connection -count 1 -ComputerName $WPFtextBox.Text
163 | # })
164 | #===========================================================================
165 | # Shows the form
166 | #===========================================================================
167 | write-host "To show the form, run the following" -ForegroundColor Cyan
168 | '$Form.ShowDialog() | out-null'
169 |
170 |
171 | $Form.ShowDialog() | out-null
--------------------------------------------------------------------------------
/history/0.4.ps1:
--------------------------------------------------------------------------------
1 | # What's working
2 | # +
3 | # -
4 | # -
5 | # -
6 |
7 | $inputXML = @"
8 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 | "@
55 |
56 | $inputXML = $inputXML -replace 'mc:Ignorable="d"','' -replace "x:N",'N' -replace '^:D
70 | Write-Host "Unable to load Windows.Markup.XamlReader. Double-check syntax and ensure .net is installed."
71 | }
72 |
73 | #===========================================================================
74 | # Store Form Objects In PowerShell
75 | #===========================================================================
76 |
77 | $xaml.SelectNodes("//*[@Name]") | %{Set-Variable -Name "WPF$($_.Name)" -Value $Form.FindName($_.Name)}
78 |
79 | Function Get-FormVariables{
80 | if ($global:ReadmeDisplay -ne $true){Write-host "If you need to reference this display again, run Get-FormVariables" -ForegroundColor Yellow;$global:ReadmeDisplay=$true}
81 | write-host "Found the following interactable elements from our form" -ForegroundColor Cyan
82 | get-variable WPF*
83 | }
84 |
85 | Get-FormVariables
86 |
87 | #===========================================================================
88 | # Use this space to add code to the various form elements in your GUI
89 | #===========================================================================
90 |
91 | #retrieve all DSC resources in the background
92 | $Runspace = [runspacefactory]::CreateRunspace()
93 |
94 | $PowerShell = [PowerShell]::Create()
95 |
96 | $PowerShell.runspace = $Runspace
97 |
98 | $Runspace.Open()
99 |
100 | [void]$PowerShell.AddScript({
101 |
102 | Get-DscResource
103 |
104 | })
105 |
106 | if ($AsyncObject.IsCompleted -eq ($true)){Write-host "COMPLETED"}
107 | else {write-host "Waiting for DSC resources to come back";start-sleep -Milliseconds 500}
108 | $AsyncObject = $PowerShell.BeginInvoke()
109 | $Data = $PowerShell.EndInvoke($AsyncObject)
110 |
111 | $resources = $Data
112 |
113 | ForEach ($resource in $resources){
114 | $newCheckBox = New-Object System.Windows.Controls.CheckBox
115 | $newCheckBox.Name = $resource.Name
116 | $newCheckBox.Content = $resource.Name
117 | $newCheckBox.Background = "White"
118 | $newCheckBox.Width = '137'
119 | $newCheckBox.Add_checked({
120 | #when the user clicks a checkbox for a DSC resource, we pull down the
121 |
122 | $TabName = $this.Name
123 | $tab = New-Object System.Windows.Controls.TabItem
124 | $tab.Name = "$($TabName)Tab"
125 | $tab.Header = $TabName
126 |
127 | $text = New-Object System.Windows.Controls.TextBox
128 | $Data | ? Name -eq 'Script'
129 | $text.Text = ((Get-DscResource $this.Name -Syntax).Split("`n") -join "`n")
130 | $text.FontFamily = 'Consolas'
131 | $text.Add_TextChanged({write-host "$($i++)text changed:$i "
132 | $WPFCompiledDSC.Text = $WPFtabControl.Items.Content.Text
133 | })
134 | $tab.Content = $text
135 |
136 | $WPFtabControl.AddChild($tab)
137 |
138 | })
139 |
140 | $newCheckBox.Add_unchecked({
141 | $WPFtabControl.Items.Remove(($WPFtabControl.Items | Where Header -eq $this.Name))
142 | })
143 |
144 | [void]$WPFResources.Children.Add($newCheckBox)
145 |
146 | }
147 |
148 | $WPFClear.Add_Click({
149 | $WPFResources.Children | ? Name -ne Clear | % {$_.IsChecked = $False}
150 | $WPFCompiledDSC.Text= "Compiled Resource will appear here"
151 | })
152 |
153 |
154 | #Reference
155 |
156 | #Remove an item when unchecked
157 | #$WPFtabControl.Items.Remove($WPFtabControl.Items[0])
158 |
159 | #Setting the text of a text box to the current PC name
160 | #$WPFtextBox.Text = $env:COMPUTERNAME
161 |
162 | #Adding code to a button, so that when clicked, it pings a system
163 | # $WPFbutton.Add_Click({ Test-connection -count 1 -ComputerName $WPFtextBox.Text
164 | # })
165 | #===========================================================================
166 | # Shows the form
167 | #===========================================================================
168 | write-host "To show the form, run the following" -ForegroundColor Cyan
169 | '$Form.ShowDialog() | out-null'
170 |
171 |
172 | $Form.ShowDialog() | out-null
--------------------------------------------------------------------------------
/history/0.5.ps1:
--------------------------------------------------------------------------------
1 | $inputXML = @"
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 | "@
55 |
56 | $inputXML = $inputXML -replace 'mc:Ignorable="d"','' -replace "x:N",'N' -replace '^:D
70 | Write-Host "Unable to load Windows.Markup.XamlReader. Double-check syntax and ensure .net is installed."
71 | }
72 |
73 | #===========================================================================
74 | # Store Form Objects In PowerShell
75 | #===========================================================================
76 |
77 | $xaml.SelectNodes("//*[@Name]") | %{Set-Variable -Name "WPF$($_.Name)" -Value $Form.FindName($_.Name)}
78 |
79 | Function Get-FormVariables{
80 | if ($global:ReadmeDisplay -ne $true){Write-host "If you need to reference this display again, run Get-FormVariables" -ForegroundColor Yellow;$global:ReadmeDisplay=$true}
81 | write-host "Found the following interactable elements from our form" -ForegroundColor Cyan
82 | get-variable WPF*
83 | }
84 |
85 | Get-FormVariables
86 |
87 | #===========================================================================
88 | # Use this space to add code to the various form elements in your GUI
89 | #===========================================================================
90 |
91 | #retrieve all DSC resources in the background
92 | $Runspace = [runspacefactory]::CreateRunspace()
93 |
94 | $PowerShell = [PowerShell]::Create()
95 |
96 | $PowerShell.runspace = $Runspace
97 |
98 | $Runspace.Open()
99 |
100 | [void]$PowerShell.AddScript({
101 |
102 | Get-DscResource
103 |
104 | })
105 |
106 | if ($AsyncObject.IsCompleted -eq ($true)){Write-host "COMPLETED"}
107 | else {write-host "Waiting for DSC resources to come back";start-sleep -Milliseconds 500}
108 | $AsyncObject = $PowerShell.BeginInvoke()
109 | $Data = $PowerShell.EndInvoke($AsyncObject)
110 |
111 | $resources = $Data
112 |
113 | #region Add checkboxes for each resource
114 | ForEach ($resource in $resources){
115 | $newCheckBox = New-Object System.Windows.Controls.CheckBox
116 | $newCheckBox.Name = $resource.Name
117 | $newCheckBox.Content = $resource.Name
118 | $newCheckBox.Background = "White"
119 | $newCheckBox.Width = '137'
120 |
121 | #region add a tab when checkbox clicked
122 | $newCheckBox.Add_checked({
123 | $TabName = $this.Name
124 | $tab = New-Object System.Windows.Controls.TabItem
125 | $tab.Name = "$($TabName)Tab"
126 | $tab.Header = $TabName
127 |
128 | $text = New-Object System.Windows.Controls.TextBox
129 | $text.AcceptsReturn = $true
130 | $text.Text = ((Get-DscResource $this.Name -Syntax).Split("`n") -join "`n")
131 | $text.FontFamily = 'Consolas'
132 | $text.Add_TextChanged({
133 | $WPFDSCBox.Text = @"
134 | configuration $($WpfconfName.Text) {
135 | $($WPFtabControl.Items.Content.Text)
136 | }
137 | "@
138 | })
139 | $tab.Content = $text
140 |
141 | $WPFtabControl.AddChild($tab)
142 |
143 | })
144 |
145 | $newCheckBox.Add_unchecked({
146 | $WPFtabControl.Items.Remove(($WPFtabControl.Items | Where Header -eq $this.Name))
147 | })
148 |
149 | $i = $WPFResources.Children.Add($newCheckBox)
150 | #endregion add Checkbox
151 |
152 | #needed a small delay to be able to add and then set the active tab
153 | start-sleep -milliseconds 100
154 | $WPFtabControl.SelectedIndex = $i - 1
155 |
156 | }
157 | #endregion add checkboxes
158 |
159 | #region event handlers for other buttons
160 | $WPFClear.Add_Click({
161 | $WPFResources.Children | ? Name -ne Clear | % {$_.IsChecked = $False}
162 | $WPFCompiledDSC.Text= "Compiled Resource will appear here"
163 | })
164 |
165 | $WPFExport.Add_Click({
166 | write-host "Trying to invoke DSC config"
167 | try {Invoke-Expression $WPFDSCBox.Text -erroraction STOP}
168 | catch{write-warning 'aw hell nah'}
169 |
170 | & $WpfconfName.Text
171 |
172 | })
173 |
174 | #endregion
175 |
176 | write-host "To show the form, run the following" -ForegroundColor Cyan
177 | '$Form.ShowDialog() | out-null'
178 |
179 |
180 | $Form.ShowDialog() | out-null
--------------------------------------------------------------------------------
/history/0.6.ps1:
--------------------------------------------------------------------------------
1 | $inputXML = @"
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 | "@
61 |
62 | Function Update-Window {
63 | [cmdletBinding()]
64 | Param (
65 | $Control,
66 | $Property,
67 | $Value,
68 | [switch]$AppendContent
69 | )
70 |
71 | # This is kind of a hack, there may be a better way to do this
72 | If ($Property -eq "Close") {
73 | $syncHash.Window.Dispatcher.invoke([action]{$syncHash.Window.Close()},"Normal")
74 | Return
75 | }
76 |
77 | # This updates the control based on the parameters passed to the function
78 | $form.Dispatcher.Invoke([action]{
79 | # This bit is only really meaningful for the TextBox control, which might be useful for logging progress steps
80 | If ($PSBoundParameters['AppendContent']) {
81 | $Control.AppendText($Value)
82 | } Else {
83 | $Control.$Property = $Value
84 | }
85 | }, "Normal")
86 | }
87 |
88 | $inputXML = $inputXML -replace 'mc:Ignorable="d"','' -replace "x:N",'N' -replace '^:D
102 | Write-Host "Unable to load Windows.Markup.XamlReader. Double-check syntax and ensure .net is installed."
103 | }
104 |
105 | #===========================================================================
106 | # Store Form Objects In PowerShell
107 | #===========================================================================
108 |
109 | $xaml.SelectNodes("//*[@Name]") | %{Set-Variable -Name "WPF$($_.Name)" -Value $Form.FindName($_.Name)}
110 |
111 | Function Get-FormVariables{
112 | if ($global:ReadmeDisplay -ne $true){Write-host "If you need to reference this display again, run Get-FormVariables" -ForegroundColor Yellow;$global:ReadmeDisplay=$true}
113 | write-host "Found the following interactable elements from our form" -ForegroundColor Cyan
114 | get-variable WPF*
115 | }
116 |
117 | Get-FormVariables
118 |
119 | #===========================================================================
120 | # Use this space to add code to the various form elements in your GUI
121 | #===========================================================================
122 |
123 | #retrieve all DSC resources in the background
124 | $Runspace = [runspacefactory]::CreateRunspace()
125 |
126 | $PowerShell = [PowerShell]::Create()
127 |
128 | $PowerShell.runspace = $Runspace
129 |
130 | $Runspace.Open()
131 |
132 | [void]$PowerShell.AddScript({
133 |
134 | Get-DscResource
135 |
136 | })
137 |
138 | if ($AsyncObject.IsCompleted -eq ($true)){Write-host "COMPLETED"}
139 | else {write-host "Waiting for DSC resources to come back";start-sleep -Milliseconds 500}
140 | $AsyncObject = $PowerShell.BeginInvoke()
141 | $Data = $PowerShell.EndInvoke($AsyncObject)
142 |
143 | $resources = $Data
144 |
145 | #region Add checkboxes for each resource
146 | ForEach ($resource in $resources){
147 | $newCheckBox = New-Object System.Windows.Controls.CheckBox
148 | $newCheckBox.Name = $resource.Name
149 | $newCheckBox.Content = $resource.Name
150 | $newCheckBox.Background = "White"
151 | $newCheckBox.Width = '137'
152 |
153 | #region add a tab when checkbox clicked
154 | $newCheckBox.Add_checked({
155 | $WPFStatusText.Text = 'Loading resource...'
156 | $TabName = $this.Name
157 | $tab = New-Object System.Windows.Controls.TabItem
158 | $tab.Name = "$($TabName)Tab"
159 | $tab.Header = $TabName
160 |
161 | $text = New-Object System.Windows.Controls.TextBox
162 | $text.AcceptsReturn = $true
163 | $text.Text = ((Get-DscResource $this.Name -Syntax).Split("`n") -join "`n")
164 | $text.FontFamily = 'Consolas'
165 | $text.Add_TextChanged({
166 | $WPFDSCBox.Text = @"
167 | configuration $($WpfconfName.Text) {
168 | $($WPFtabControl.Items.Content.Text)
169 | }
170 | "@
171 | })
172 | $tab.Content = $text
173 |
174 | $WPFtabControl.AddChild($tab)
175 | $WPFStatusText.Text = 'Ready...'
176 | })
177 |
178 | $newCheckBox.Add_unchecked({
179 | $WPFtabControl.Items.Remove(($WPFtabControl.Items | Where Header -eq $this.Name))
180 | })
181 |
182 | $i = $WPFResources.Children.Add($newCheckBox)
183 | #endregion add Checkbox
184 |
185 | #needed a small delay to be able to add and then set the active tab
186 | start-sleep -milliseconds 100
187 | $WPFtabControl.SelectedIndex = $i - 1
188 |
189 | }
190 | #endregion add checkboxes
191 |
192 | #region event handlers for other buttons
193 | $WPFClear.Add_Click({
194 | $WPFResources.Children | ? Name -ne Clear | % {$_.IsChecked = $False}
195 | $WPFDSCBox.Text= "Compiled Resource will appear here"
196 | })
197 |
198 | $WPFClearv2.Add_Click({
199 | $WPFResources.Children | ? Name -ne Clear | % {$_.IsChecked = $False}
200 | $WPFDSCBox.Text= "Compiled Resource will appear here"
201 | })
202 |
203 | $WPFExport.Add_Click({
204 | $form.Dispatcher.Invoke([action]{$WPFStatusText.Text='Creating Configuration...'})
205 | write-host "Trying to invoke DSC config"
206 | try {Invoke-Expression $WPFDSCBox.Text -erroraction STOP}
207 | catch{write-warning 'aw hell nah'}
208 |
209 |
210 |
211 | $FolderDialog = New-Object System.Windows.Forms.FolderBrowserDialog
212 |
213 | $FolderDialog.ShowDialog() | Out-Null
214 |
215 | $outDir = $FolderDialog.SelectedPath
216 |
217 | & $WpfconfName.Text -OutPutPath $outDir
218 |
219 | [System.Windows.Forms.MessageBox]::Show("DSC Resource Created at $outDir",'DSC Designer')
220 | })
221 |
222 | #endregion
223 |
224 | write-host "To show the form, run the following" -ForegroundColor Cyan
225 | '$Form.ShowDialog() | out-null'
226 |
227 |
228 | $Form.ShowDialog() | out-null
--------------------------------------------------------------------------------
/history/sample valid DSC config.ps1:
--------------------------------------------------------------------------------
1 | File EnsureTemp #ResourceName
2 | {
3 | DestinationPath = 'c:\ham'
4 | Ensure = 'Present'
5 | SourcePath = 'c:\temp'
6 | Type = 'Directory'
7 | Recurse = $true
8 | }
--------------------------------------------------------------------------------