回答編集履歴

2

見直しキャンペーン中

2023/08/15 08:13

投稿

TN8001
TN8001

スコア9326

test CHANGED
@@ -13,6 +13,8 @@
13
13
  ```
14
14
  [c# - Setting datagrid cell background colour wpf - Stack Overflow](https://stackoverflow.com/questions/26311483/setting-datagrid-cell-background-colour-wpf/26311957)
15
15
 
16
+ ---
17
+
16
18
  丸の種類が参考サイトと違うようです(↑は参考サイトに合わせました)
17
19
  参考サイト:◯
18
20
  提示コード:〇

1

見直しキャンペーン中

2023/07/29 10:36

投稿

TN8001
TN8001

スコア9326

test CHANGED
@@ -1,35 +1,18 @@
1
1
  こうですかね。
2
-
3
- ```xaml
2
+ ```xml
4
-
5
3
  <DataGrid.CellStyle>
6
-
7
4
  <Style TargetType="{x:Type DataGridCell}">
8
-
9
5
  <Setter Property="TextBlock.TextAlignment" Value="Center" />
10
-
11
6
  <Style.Triggers>
12
-
13
7
  <DataTrigger Binding="{Binding Content.Text, RelativeSource={RelativeSource Self}}" Value="◯">
14
-
15
8
  <Setter Property="Background" Value="Yellow" />
16
-
17
9
  </DataTrigger>
18
-
19
10
  </Style.Triggers>
20
-
21
11
  </Style>
22
-
23
12
  </DataGrid.CellStyle>
24
-
25
13
  ```
26
-
27
14
  [c# - Setting datagrid cell background colour wpf - Stack Overflow](https://stackoverflow.com/questions/26311483/setting-datagrid-cell-background-colour-wpf/26311957)
28
15
 
29
-
30
-
31
16
  丸の種類が参考サイトと違うようです(↑は参考サイトに合わせました)
32
-
33
17
  参考サイト:◯
34
-
35
18
  提示コード:〇