You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/debugger/xaml-hot-reload.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ The following are known limitations of XAML hot reload. To work around any limit
41
41
|Creating resource objects in a resource dictionary such as those in your app's Page/Window or *App.xaml*|Not Supported|Supported|Example: adding a ```SolidColorBrush``` into a resource dictionary for use as a ```StaticResource```.</br>Note: Static resources, style converters, and other elements written into a resource dictionary can be applied/used while using XAML hot reload. Only the creation of the resource is not supported.</br> Changing the resource dictionary ```Source``` property.|
42
42
|Adding new controls, classes, windows, or other files to your project while the app is running|Not Supported|Not Supported|None|
|Changing data binding that uses the {x:Bind} markup extension|N/A|Supported in Visual Studio 2019 and later versions|Not supported in Visual Studio 2018 or previous versions|
44
+
|Changing data binding that uses the {x:Bind} markup extension|N/A|Supported in Visual Studio 2019 and later versions|Not supported in Visual Studio 2017 or previous versions|
45
45
46
46
## Error messages
47
47
@@ -51,4 +51,4 @@ You may come across the following errors while using XAML hot reload.
51
51
|-|-|-|
52
52
|Ensure Event Failed|Error indicates you are attempting to wire an event to one of your controls, which isn’t supported while your application is running.|
53
53
|XAML Edit and Continue did not find any elements to update.|Error occurs when you are editing XAML that hot reload cannot update in your app.</br> This error can sometimes be fixed by using your running app to navigate to a view where the XAML is used.</br> Sometimes, this error means that the specific change can't be applied until you restart the debugging session. |
54
-
|This change is not supported during a debugging session.|Error indicates that the change you are attempting is not supported by XAML hot reload. Stop the debugging session, make the change, and then restart the debugging session.|
54
+
|This change is not supported during a debugging session.|Error indicates that the change you are attempting is not supported by XAML hot reload. Stop the debugging session, make the change, and then restart the debugging session.|
Copy file name to clipboardExpand all lines: docs/ide/step-1-create-a-project-and-add-labels-to-your-form.md
+23-6Lines changed: 23 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: "Step 1: Create a project and add labels to your form"
3
-
ms.date: 11/04/2016
3
+
ms.date: 05/31/2019
4
4
ms.topic: conceptual
5
5
ms.prod: visual-studio-windows
6
6
ms.technology: vs-ide-general
@@ -18,7 +18,7 @@ As the first steps in developing this quiz, you create the project, and you add
18
18
> [!NOTE]
19
19
> This topic is part of a tutorial series about basic coding concepts. For an overview of the tutorial, see [Tutorial 2: Create a timed math quiz](../ide/tutorial-2-create-a-timed-math-quiz.md).
20
20
21
-
## To create a project and set properties for a form
21
+
## To create a project for a form
22
22
23
23
::: moniker range="vs-2017"
24
24
@@ -36,15 +36,32 @@ As the first steps in developing this quiz, you create the project, and you add
36
36
37
37
1. On the start window, choose **Create a new project**.
38
38
39
-
1. In the search box, type "WPF", choose **WPF App (.NET Framework)**, and then choose **Next**.
39
+

40
40
41
-
(If you don't see the **WPF App (.NET Framework)**template, use the Visual Studio Installer to install the **.NET desktop development** workload.)
41
+
1. On the **Create a new project**window, enter or type *Windows Forms* in the search box.
42
42
43
-
1. Give the project a name, **MathQuiz**, and choose **Create**
43
+
1. Choose the **Windows Forms App (.NET Framework)** template, and then choose **Next**.
44
+
45
+

46
+
47
+
> [!NOTE]
48
+
> If you do not see the **Windows Forms App (.NET Framework)** template, you can install it from the **Create a new project** window. In the **Not finding what you're looking for?** message, choose the **Install more tools and features** link.
49
+
>
50
+
> 
51
+
>
52
+
> Next, in the Visual Studio Installer, choose the Choose the **.NET desktop development** workload.
53
+
>
54
+
> 
55
+
>
56
+
> After that, choose the **Modify** button in the Visual Studio Installer. You might be prompted to save your work; if so, do so. Next, choose **Continue** to install the workload.
57
+
58
+
1. In the **Configure your new project** window, type or enter *MathQuiz* in the **Project name** box. Then, choose **Create**.
44
59
45
60
::: moniker-end
46
61
47
-
1. Choose the form, and then change its **Text** property to **Math Quiz**.
62
+
## To create set properties for a form
63
+
64
+
1. In Visual Studio, choose the form (either *Form1.cs* or *Form1.vb*, depending on the programming language), and then change its **Text** property to **Math Quiz**.
48
65
49
66
The **Properties** window contains properties for the form.
-[Work with mail items](../vsto/working-with-mail-items.md)
33
35
-[How to: Programmatically retrieve a folder by name](../vsto/how-to-programmatically-retrieve-a-folder-by-name.md)
34
36
-[How to: Programmatically perform actions when an email message is received](../vsto/how-to-programmatically-perform-actions-when-an-e-mail-message-is-received.md)
0 commit comments