Skip to content

Commit d8f7b8f

Browse files
committed
997111-Addressed review changes.
1 parent 7f545ac commit d8f7b8f

File tree

1 file changed

+1
-16
lines changed

1 file changed

+1
-16
lines changed

MAUI/Kanban-Board/liquid-glass-effect.md

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Set the `EnableLiquidGlassEffect` property to `true` in the `SfKanban` control t
2727

2828
### Step 3: Customize the background
2929

30-
To achieve a glass-like background in the Kanban control, set its Background property to Transparent and apply theme keys with transparent values to enable the liquid glass effect for kanban child elements. This ensures a consistent look and feel across your application.
30+
To achieve a glass like background in the Kanban control, set its Background property to Transparent and apply theme keys with transparent values to enable the liquid glass effect for kanban child elements. This ensures a consistent look and feel across your application.
3131

3232
The following code snippet demonstrates how to apply the Liquid Glass Effect to the `Kanban` control:
3333

@@ -127,14 +127,12 @@ public class KanbanViewModel
127127
/// <returns>The collection of <see cref="KanbanModel"/> instances.</returns>
128128
private ObservableCollection<KanbanModel> GetCardDetails()
129129
{
130-
Assembly assemblyName = typeof(SfImageSourceConverter).GetTypeInfo().Assembly;
131130
var cardsDetails = new ObservableCollection<KanbanModel>();
132131

133132
cardsDetails.Add(new KanbanModel()
134133
{
135134
ID = 1,
136135
Title = "iOS - 1",
137-
ImageURL = assemblyName + ".people_circle1.png",
138136
Category = "Open",
139137
Description = "Analyze customer requirements.",
140138
IndicatorFill = Colors.Red,
@@ -145,7 +143,6 @@ public class KanbanViewModel
145143
{
146144
ID = 6,
147145
Title = "Xamarin - 6",
148-
ImageURL = assemblyName + ".people_circle2.png",
149146
Category = "Open",
150147
Description = "Show the retrieved data from the server in Grid control.",
151148
IndicatorFill = Colors.Red,
@@ -156,7 +153,6 @@ public class KanbanViewModel
156153
{
157154
ID = 3,
158155
Title = "iOS - 3",
159-
ImageURL = assemblyName + ".people_circle3.png",
160156
Category = "Postponed",
161157
Description = "Fix the filtering issues reported in Safari.",
162158
IndicatorFill = Colors.Red,
@@ -167,7 +163,6 @@ public class KanbanViewModel
167163
{
168164
ID = 11,
169165
Title = "iOS - 21",
170-
ImageURL = assemblyName + ".people_circle4.png",
171166
Category = "Postponed",
172167
Description = "Add input validation for editing.",
173168
IndicatorFill = Colors.Red,
@@ -179,7 +174,6 @@ public class KanbanViewModel
179174
ID = 15,
180175
Title = "Android - 15",
181176
Category = "Open",
182-
ImageURL = assemblyName + ".people_circle5.png",
183177
Description = "Arrange web meetings for customers.",
184178
IndicatorFill = Colors.Red,
185179
Tags = new List<string> { "Story", "Kanban" }
@@ -190,7 +184,6 @@ public class KanbanViewModel
190184
ID = 3,
191185
Title = "Android - 3",
192186
Category = "Code Review",
193-
ImageURL = assemblyName + ".people_circle6.png",
194187
Description = "API Improvements.",
195188
IndicatorFill = Colors.Purple,
196189
Tags = new List<string> { "Bug", "Customer" }
@@ -200,7 +193,6 @@ public class KanbanViewModel
200193
{
201194
ID = 4,
202195
Title = "UWP - 4",
203-
ImageURL = assemblyName + ".people_circle7.png",
204196
Category = "Code Review",
205197
Description = "Enhance editing functionality.",
206198
IndicatorFill = Colors.Brown,
@@ -211,7 +203,6 @@ public class KanbanViewModel
211203
{
212204
ID = 9,
213205
Title = "Xamarin - 9",
214-
ImageURL = assemblyName + ".people_circle8.png",
215206
Category = "Code Review",
216207
Description = "Improve application's performance.",
217208
IndicatorFill = Colors.Orange,
@@ -222,7 +213,6 @@ public class KanbanViewModel
222213
{
223214
ID = 13,
224215
Title = "UWP - 13",
225-
ImageURL = assemblyName + ".people_circle9.png",
226216
Category = "In Progress",
227217
Description = "Add responsive support to applications.",
228218
IndicatorFill = Colors.Brown,
@@ -233,7 +223,6 @@ public class KanbanViewModel
233223
{
234224
ID = 24,
235225
Title = "UWP - 24",
236-
ImageURL = assemblyName + ".people_circle14.png",
237226
Category = "In Progress",
238227
Description = "Test editing functionality.",
239228
IndicatorFill = Colors.Orange,
@@ -245,7 +234,6 @@ public class KanbanViewModel
245234
ID = 20,
246235
Title = "iOS - 20",
247236
Category = "In Progress",
248-
ImageURL = assemblyName + ".people_circle15.png",
249237
Description = "Fix the issues reported in data binding.",
250238
IndicatorFill = Colors.Red,
251239
Tags = new List<string> { "Feature", "Release" }
@@ -255,7 +243,6 @@ public class KanbanViewModel
255243
{
256244
ID = 13,
257245
Title = "UWP - 13",
258-
ImageURL = assemblyName + ".people_circle18.png",
259246
Category = "Closed",
260247
Description = "Fix cannot open user's default database SQL error.",
261248
IndicatorFill = Colors.Purple,
@@ -267,7 +254,6 @@ public class KanbanViewModel
267254
ID = 14,
268255
Title = "Android - 14",
269256
Category = "Closed",
270-
ImageURL = assemblyName + ".people_circle19.png",
271257
Description = "Arrange a web meeting with the customer to get the login page requirement.",
272258
IndicatorFill = Colors.Red,
273259
Tags = new List<string> { "Feature" }
@@ -278,7 +264,6 @@ public class KanbanViewModel
278264
ID = 15,
279265
Title = "Xamarin - 15",
280266
Category = "Closed",
281-
ImageURL = assemblyName + ".people_circle20.png",
282267
Description = "Login page validation.",
283268
IndicatorFill = Colors.Red,
284269
Tags = new List<string> { "Bug" }

0 commit comments

Comments
 (0)