· 9 years ago · Jan 20, 2017, 11:24 PM
1<DataTrigger Value="True">
2 <DataTrigger.Binding>
3 <MultiBinding Converter="{StaticResource DisableWorkItemConverter}">
4 <Binding ElementName="MainForm" Path="PickedWorkItemID"/>
5 <Binding Path="Id"/>
6 </MultiBinding>
7 </DataTrigger.Binding>
8 <Setter Property="IsEnabled" Value="False"/>
9 <Setter Property="IsSelected" Value="False"/> <-----+
10</DataTrigger> |
11 |
12 |
13 yo, this line here! ----------------------------
14
15var foo = new Bar(); // here is the problem...
16
17<code>this is **bold code** and this isn't</code>
18
19<code>this is <b>bold code</b> and this isn't</code>
20
21var fruit = "Apple"
22 if isRipe(fruit) do [1]
23 eat(fruit)
24 end
25
26var fruit = "Apple"
27 if isRipe(fruit) do [1]
28 eat(fruit)
29 end
30
31<DataTrigger Value="True">
32 <DataTrigger.Binding>
33 <MultiBinding Converter="{StaticResource DisableWorkItemConverter}">
34 <Binding ElementName="MainForm" Path="PickedWorkItemID"/>
35 <Binding Path="Id"/>
36 </MultiBinding>
37 </DataTrigger.Binding>
38 <Setter Property="IsEnabled" Value="False"/>
39 <Setter Property="IsSelected" Value="False"/> <!-- HELP: here is the problem -->
40</DataTrigger>
41
42``
43- c:
44 - documents and settings
45 - admin
46 - all users
47 - default user
48 - *username*
49 - application data
50 - local settings
51 - temp
52 - program files
53 - Microsoft Office
54 - Windows Media Player
55 - Windows
56 - fonts
57 - system32
58``
59
60c:documents and settingsadminall usersdefault userusernameapplication datalocal settingstempprogram filesMicrosoft OfficeWindows Media PlayerWindowsfontssystem32
61
62``
63create [temp|temporary] table [if not exists] *table-name* (
64 *column-name* [*type-name*]
65)
66``
67
68create [temp|temporary] table [if not exists] table-name (
69 column-name [type-name]
70)
71
72``
73<book id="bk101">
74 <author>Gambardella, Matthew</author>
75 <title>XML Developer's Guide</title>
76 <genre>Computer</genre>
77 **<price>44.95<price> <!-- error: wrong closing tag -->**
78 <publish_date>2000-10-01</publish_date>
79 <description>An in-depth look at creating applications with XML.</description>
80</book>
81``
82
83<book id="bk101">
84 <author>Gambardella, Matthew</author>
85 <title>XML Developer's Guide</title>
86 <genre>Computer</genre>
87 <price>44.95<price> <!-- error: wrong closing tag -->
88 <publish_date>2000-10-01</publish_date>
89 <description>An in-depth look at creating applications with XML.</description>
90</book>