-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathListView.xml
More file actions
1985 lines (1975 loc) · 118 KB
/
ListView.xml
File metadata and controls
1985 lines (1975 loc) · 118 KB
1
2
3
4
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
60
61
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<Type Name="ListView" FullName="Microsoft.Maui.Controls.ListView">
<TypeSignature Language="C#" Value="public class ListView : Microsoft.Maui.Controls.ItemsView<Microsoft.Maui.Controls.Cell>, Microsoft.Maui.Controls.IElementConfiguration<Microsoft.Maui.Controls.ListView>, Microsoft.Maui.Controls.IListViewController" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit ListView extends Microsoft.Maui.Controls.ItemsView`1<class Microsoft.Maui.Controls.Cell> implements class Microsoft.Maui.Controls.IElementConfiguration`1<class Microsoft.Maui.Controls.ListView>, class Microsoft.Maui.Controls.IElementController, class Microsoft.Maui.Controls.IListViewController, class Microsoft.Maui.Controls.IViewController, class Microsoft.Maui.Controls.IVisualElementController" />
<TypeSignature Language="DocId" Value="T:Microsoft.Maui.Controls.ListView" />
<TypeSignature Language="F#" Value="type ListView = class
 inherit ItemsView<Cell>
 interface IListViewController
 interface IViewController
 interface IVisualElementController
 interface IElementController
 interface IElementConfiguration<ListView>" />
<AssemblyInfo>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>Microsoft.Maui.Controls.ItemsView<Microsoft.Maui.Controls.Cell></BaseTypeName>
<BaseTypeArguments>
<BaseTypeArgument TypeParamName="TVisual">Microsoft.Maui.Controls.Cell</BaseTypeArgument>
</BaseTypeArguments>
</Base>
<Interfaces>
<Interface>
<InterfaceName>Microsoft.Maui.Controls.IElementConfiguration<Microsoft.Maui.Controls.ListView></InterfaceName>
</Interface>
<Interface>
<InterfaceName>Microsoft.Maui.Controls.IElementController</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Microsoft.Maui.Controls.IListViewController</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Microsoft.Maui.Controls.IViewController</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Microsoft.Maui.Controls.IVisualElementController</InterfaceName>
</Interface>
</Interfaces>
<Attributes>
<Attribute>
<AttributeName>Microsoft.Maui.Controls.RenderWith(typeof(Microsoft.Maui.Controls.Platform._ListViewRenderer))</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>An <see cref="T:Microsoft.Maui.Controls.ItemsView`1" /> that displays a collection of data as a vertical list.</summary>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public ListView ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Maui.Controls.ListView.#ctor" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<Parameters />
<Docs>
<summary>Creates and initializes a new instance of the <see cref="T:Microsoft.Maui.Controls.ListView" /> class.</summary>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public ListView (Microsoft.Maui.Controls.ListViewCachingStrategy cachingStrategy);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(valuetype Microsoft.Maui.Controls.ListViewCachingStrategy cachingStrategy) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Maui.Controls.ListView.#ctor(Microsoft.Maui.Controls.ListViewCachingStrategy)" />
<MemberSignature Language="F#" Value="new Microsoft.Maui.Controls.ListView : Microsoft.Maui.Controls.ListViewCachingStrategy -> Microsoft.Maui.Controls.ListView" Usage="new Microsoft.Maui.Controls.ListView cachingStrategy" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<Parameters>
<Parameter Name="cachingStrategy" Type="Microsoft.Maui.Controls.ListViewCachingStrategy" />
</Parameters>
<Docs>
<param name="cachingStrategy">A value that indicates how the List View should manage memory when displaying data items using a data template.</param>
<summary>Creates and initializes a new instance of the <see cref="T:Microsoft.Maui.Controls.ListView" /> class, with the specified caching strategy.</summary>
<remarks>
<para>For memory and performance reasons, application developers should strongly prefer <see cref="F:Microsoft.Maui.Controls.ListViewCachingStrategy.RecycleElement" />, when possible. See <see cref="T:Microsoft.Maui.Controls.ListViewCachingStrategy" /> for more details.</para>
<para>
When developers specify <see cref="F:Microsoft.Maui.Controls.ListViewCachingStrategy.RecycleElement" />, <c>OnElementChanged</c> events are not raised when cells are recycled. Instead, the cell is retained and its property values change when the binding context is updated to that of an available cell, <c>OnElementPropertyChanged</c> events are raised. Application developers should remember to listen for the correct events, and should note that their renderers will need to be updated if the default behavior changes to <see cref="F:Microsoft.Maui.Controls.ListViewCachingStrategy.RecycleElement" /> in a future release.
</para>
</remarks>
</Docs>
</Member>
<Member MemberName="BeginRefresh">
<MemberSignature Language="C#" Value="public void BeginRefresh ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void BeginRefresh() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Maui.Controls.ListView.BeginRefresh" />
<MemberSignature Language="F#" Value="member this.BeginRefresh : unit -> unit" Usage="listView.BeginRefresh " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Enters the refreshing state by setting the <see cref="P:Microsoft.Maui.Controls.ListView.IsRefreshing" /> property to <see langword="true" />.</summary>
</Docs>
</Member>
<Member MemberName="CachingStrategy">
<MemberSignature Language="C#" Value="public Microsoft.Maui.Controls.ListViewCachingStrategy CachingStrategy { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype Microsoft.Maui.Controls.ListViewCachingStrategy CachingStrategy" />
<MemberSignature Language="DocId" Value="P:Microsoft.Maui.Controls.ListView.CachingStrategy" />
<MemberSignature Language="F#" Value="member this.CachingStrategy : Microsoft.Maui.Controls.ListViewCachingStrategy" Usage="Microsoft.Maui.Controls.ListView.CachingStrategy" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.ListViewCachingStrategy</ReturnType>
</ReturnValue>
<Docs>
<summary>For internal use by the Microsoft.Maui.Controls platform.</summary>
</Docs>
</Member>
<Member MemberName="CreateDefault">
<MemberSignature Language="C#" Value="protected override Microsoft.Maui.Controls.Cell CreateDefault (object item);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig virtual instance class Microsoft.Maui.Controls.Cell CreateDefault(object item) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Maui.Controls.ListView.CreateDefault(System.Object)" />
<MemberSignature Language="F#" Value="override this.CreateDefault : obj -> Microsoft.Maui.Controls.Cell" Usage="listView.CreateDefault item" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.Cell</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="item" Type="System.Object" />
</Parameters>
<Docs>
<param name="item">The item to create a default visual for.</param>
<summary>Creates an instance of the default visual representation of an item.</summary>
<returns>
A <see cref="T:Microsoft.Maui.Controls.TextCell" /> instance with its text set to the string representation of the object (<see cref="M:System.Object.ToString" />).
</returns>
<remarks>
<para>
This method is called by the templating system when <see cref="P:Microsoft.Maui.Controls.ItemsView`1.ItemTemplate" /> is <see langword="null" />.
</para>
<para>
The <see cref="P:Microsoft.Maui.Controls.BindableObject.BindingContext" /> of the returned object will automatically be set to <paramref name="item" />, there is no
need to set it yourself. If you do, it will be overridden.
</para>
</remarks>
</Docs>
</Member>
<Member MemberName="CreateDefaultCell">
<MemberSignature Language="C#" Value="public Microsoft.Maui.Controls.Cell CreateDefaultCell (object item);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Maui.Controls.Cell CreateDefaultCell(object item) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Maui.Controls.ListView.CreateDefaultCell(System.Object)" />
<MemberSignature Language="F#" Value="abstract member CreateDefaultCell : obj -> Microsoft.Maui.Controls.Cell
override this.CreateDefaultCell : obj -> Microsoft.Maui.Controls.Cell" Usage="listView.CreateDefaultCell item" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:Microsoft.Maui.Controls.IListViewController.CreateDefaultCell(System.Object)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.Cell</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="item" Type="System.Object" />
</Parameters>
<Docs>
<param name="item">For internal use by the Microsoft.Maui.Controls platform.</param>
<summary>For internal use by the Microsoft.Maui.Controls platform.</summary>
</Docs>
</Member>
<Member MemberName="EndRefresh">
<MemberSignature Language="C#" Value="public void EndRefresh ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void EndRefresh() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Maui.Controls.ListView.EndRefresh" />
<MemberSignature Language="F#" Value="member this.EndRefresh : unit -> unit" Usage="listView.EndRefresh " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Exits the refreshing state by setting the <see cref="P:Microsoft.Maui.Controls.ListView.IsRefreshing" /> property to <see langword="false" />.</summary>
</Docs>
</Member>
<Member MemberName="Footer">
<MemberSignature Language="C#" Value="public object Footer { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance object Footer" />
<MemberSignature Language="DocId" Value="P:Microsoft.Maui.Controls.ListView.Footer" />
<MemberSignature Language="F#" Value="member this.Footer : obj with get, set" Usage="Microsoft.Maui.Controls.ListView.Footer" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the string, binding, or view that will be displayed at the bottom of the list view.</summary>
</Docs>
</Member>
<Member MemberName="FooterElement">
<MemberSignature Language="C#" Value="public Microsoft.Maui.Controls.Element FooterElement { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Maui.Controls.Element FooterElement" />
<MemberSignature Language="DocId" Value="P:Microsoft.Maui.Controls.ListView.FooterElement" />
<MemberSignature Language="F#" Value="member this.FooterElement : Microsoft.Maui.Controls.Element" Usage="Microsoft.Maui.Controls.ListView.FooterElement" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember>P:Microsoft.Maui.Controls.IListViewController.FooterElement</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.Element</ReturnType>
</ReturnValue>
<Docs>
<summary>For internal use by the Microsoft.Maui.Controls platform.</summary>
</Docs>
</Member>
<Member MemberName="FooterProperty">
<MemberSignature Language="C#" Value="public static readonly Microsoft.Maui.Controls.BindableProperty FooterProperty;" />
<MemberSignature Language="ILAsm" Value=".field public static initonly class Microsoft.Maui.Controls.BindableProperty FooterProperty" />
<MemberSignature Language="DocId" Value="F:Microsoft.Maui.Controls.ListView.FooterProperty" />
<MemberSignature Language="F#" Value=" staticval mutable FooterProperty : Microsoft.Maui.Controls.BindableProperty" Usage="Microsoft.Maui.Controls.ListView.FooterProperty" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.BindableProperty</ReturnType>
</ReturnValue>
<Docs>
<summary>Backing store for the <see cref="P:Microsoft.Maui.Controls.ListView.Footer" /> property.</summary>
</Docs>
</Member>
<Member MemberName="FooterTemplate">
<MemberSignature Language="C#" Value="public Microsoft.Maui.Controls.DataTemplate FooterTemplate { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Maui.Controls.DataTemplate FooterTemplate" />
<MemberSignature Language="DocId" Value="P:Microsoft.Maui.Controls.ListView.FooterTemplate" />
<MemberSignature Language="F#" Value="member this.FooterTemplate : Microsoft.Maui.Controls.DataTemplate with get, set" Usage="Microsoft.Maui.Controls.ListView.FooterTemplate" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.DataTemplate</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a data template to use to format a data object for display at the bottom of the list view.</summary>
</Docs>
</Member>
<Member MemberName="FooterTemplateProperty">
<MemberSignature Language="C#" Value="public static readonly Microsoft.Maui.Controls.BindableProperty FooterTemplateProperty;" />
<MemberSignature Language="ILAsm" Value=".field public static initonly class Microsoft.Maui.Controls.BindableProperty FooterTemplateProperty" />
<MemberSignature Language="DocId" Value="F:Microsoft.Maui.Controls.ListView.FooterTemplateProperty" />
<MemberSignature Language="F#" Value=" staticval mutable FooterTemplateProperty : Microsoft.Maui.Controls.BindableProperty" Usage="Microsoft.Maui.Controls.ListView.FooterTemplateProperty" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.BindableProperty</ReturnType>
</ReturnValue>
<Docs>
<summary>Backing store for the <see cref="P:Microsoft.Maui.Controls.ListView.FooterTemplate" /> property.</summary>
</Docs>
</Member>
<Member MemberName="GetDisplayTextFromGroup">
<MemberSignature Language="C#" Value="public string GetDisplayTextFromGroup (object cell);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance string GetDisplayTextFromGroup(object cell) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Maui.Controls.ListView.GetDisplayTextFromGroup(System.Object)" />
<MemberSignature Language="F#" Value="abstract member GetDisplayTextFromGroup : obj -> string
override this.GetDisplayTextFromGroup : obj -> string" Usage="listView.GetDisplayTextFromGroup cell" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:Microsoft.Maui.Controls.IListViewController.GetDisplayTextFromGroup(System.Object)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="cell" Type="System.Object" />
</Parameters>
<Docs>
<param name="cell">For internal use by the Microsoft.Maui.Controls platform.</param>
<summary>For internal use by the Microsoft.Maui.Controls platform.</summary>
</Docs>
</Member>
<Member MemberName="GroupDisplayBinding">
<MemberSignature Language="C#" Value="public Microsoft.Maui.Controls.BindingBase GroupDisplayBinding { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Maui.Controls.BindingBase GroupDisplayBinding" />
<MemberSignature Language="DocId" Value="P:Microsoft.Maui.Controls.ListView.GroupDisplayBinding" />
<MemberSignature Language="F#" Value="member this.GroupDisplayBinding : Microsoft.Maui.Controls.BindingBase with get, set" Usage="Microsoft.Maui.Controls.ListView.GroupDisplayBinding" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.BindingBase</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the binding to use for displaying the group header.</summary>
<value>The <see cref="T:Microsoft.Maui.Controls.BindingBase" /> instance to apply to grouped lists, or <see langword="null" />.</value>
<remarks>
<para>
This binding can be used to simply set a the text of the group headers without defining a full template and uses the default visuals
of the platform to display it. The binding is applied to the <see cref="T:System.Collections.IEnumerable" /> of the group.
</para>
<para>
This property is mutually exclusive with <see cref="P:Microsoft.Maui.Controls.ListView.GroupHeaderTemplate" /> property. Setting it will set
<see cref="P:Microsoft.Maui.Controls.ListView.GroupHeaderTemplate" /> to <see langword="null" />.
</para>
</remarks>
<example>
<para>This example shows an alphabetized list of people, grouped by first initial with the display binding set.</para>
<code lang="csharp lang-csharp"><![CDATA[
class Person
{
public string FullName
{
get;
set;
}
public string Address
{
get;
set;
}
}
]]></code>
<code lang="csharp lang-csharp"><![CDATA[
class Group : ObservableCollection<Person>
{
public Group (string firstInitial)
{
FirstInitial = firstInitial;
}
public string FirstInitial
{
get;
private set;
}
}
]]></code>
<code lang="csharp lang-csharp"><![CDATA[
ListView CreateListView()
{
var listView = new ListView {
IsGroupingEnabled = true,
GroupDisplayBinding = new Binding ("FirstInitial"),
GroupShortNameBinding = new Binding ("FirstInitial")
};
var template = new DataTemplate (typeof (TextCell));
template.SetBinding (TextCell.TextProperty, "FullName");
template.SetBinding (TextCell.DetailProperty, "Address");
itemsView.ItemTemplate = template;
itemsView.ItemsSource = new[] {
new Group ("C") {
new Person { FullName = "Caprice Nave" }
},
new Group ("J") {
new Person { FullName = "James Smith", Address = "404 Nowhere Street" },
new Person { FullName = "John Doe", Address = "404 Nowhere Ave" }
}
};
}
]]></code>
</example>
</Docs>
</Member>
<Member MemberName="GroupHeaderTemplate">
<MemberSignature Language="C#" Value="public Microsoft.Maui.Controls.DataTemplate GroupHeaderTemplate { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Maui.Controls.DataTemplate GroupHeaderTemplate" />
<MemberSignature Language="DocId" Value="P:Microsoft.Maui.Controls.ListView.GroupHeaderTemplate" />
<MemberSignature Language="F#" Value="member this.GroupHeaderTemplate : Microsoft.Maui.Controls.DataTemplate with get, set" Usage="Microsoft.Maui.Controls.ListView.GroupHeaderTemplate" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.DataTemplate</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a <see cref="T:Microsoft.Maui.Controls.DataTemplate" /> for group headers.</summary>
<value>The <see cref="T:Microsoft.Maui.Controls.DataTemplate" /> for group headers, or <see langword="null" />.</value>
<remarks>
<para>
Use this property to define a template for a <see cref="T:Microsoft.Maui.Controls.Cell" /> that will be used as the header for groups in this
<see cref="T:Microsoft.Maui.Controls.ListView" />. The <see cref="P:Microsoft.Maui.Controls.BindableObject.BindingContext" /> will be the <see cref="T:System.Collections.IEnumerable" />
for each group.
</para>
<para>
GroupHeaderTemplate is mutually exclusive with <see cref="P:Microsoft.Maui.Controls.ListView.GroupDisplayBinding" />. Setting this property
will set <see cref="P:Microsoft.Maui.Controls.ListView.GroupDisplayBinding" /> to <see langword="null" />.
</para>
<para>Empty groups will still display a group header.</para>
</remarks>
<altmember cref="P:Microsoft.Maui.Controls.ItemsView`1.ItemsSource" />
<altmember cref="P:Microsoft.Maui.Controls.ListView.GroupDisplayBinding" />
<altmember cref="P:Microsoft.Maui.Controls.ListView.IsGroupingEnabled" />
</Docs>
</Member>
<Member MemberName="GroupHeaderTemplateProperty">
<MemberSignature Language="C#" Value="public static readonly Microsoft.Maui.Controls.BindableProperty GroupHeaderTemplateProperty;" />
<MemberSignature Language="ILAsm" Value=".field public static initonly class Microsoft.Maui.Controls.BindableProperty GroupHeaderTemplateProperty" />
<MemberSignature Language="DocId" Value="F:Microsoft.Maui.Controls.ListView.GroupHeaderTemplateProperty" />
<MemberSignature Language="F#" Value=" staticval mutable GroupHeaderTemplateProperty : Microsoft.Maui.Controls.BindableProperty" Usage="Microsoft.Maui.Controls.ListView.GroupHeaderTemplateProperty" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.BindableProperty</ReturnType>
</ReturnValue>
<Docs>
<summary>Identifies the <see cref="P:Microsoft.Maui.Controls.ListView.GroupHeaderTemplate" /> property.</summary>
</Docs>
</Member>
<Member MemberName="GroupShortNameBinding">
<MemberSignature Language="C#" Value="public Microsoft.Maui.Controls.BindingBase GroupShortNameBinding { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Maui.Controls.BindingBase GroupShortNameBinding" />
<MemberSignature Language="DocId" Value="P:Microsoft.Maui.Controls.ListView.GroupShortNameBinding" />
<MemberSignature Language="F#" Value="member this.GroupShortNameBinding : Microsoft.Maui.Controls.BindingBase with get, set" Usage="Microsoft.Maui.Controls.ListView.GroupShortNameBinding" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.BindingBase</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a binding for the name to display in grouped jump lists.</summary>
<value>The <see cref="T:Microsoft.Maui.Controls.BindingBase" /> instance to apply to grouped lists, or <see langword="null" />.</value>
<remarks>
<para>
When grouping items in a <see cref="T:Microsoft.Maui.Controls.ListView" />, it is often useful to have jump lists to jump to specific
sections in the list. For example, in an alphabetically grouped lists, the jump list would be the the letter of each group.
This binding is applied against the <see cref="T:System.Collections.IEnumerable" /> of each group to select the short name to display
in the jump list.
</para>
<para>
Note: On Android, there is no displayed jump list.
</para>
</remarks>
<example>
<para>This example shows an alphabetized list of people, grouped by first initial with the short name binding set.</para>
<code lang="csharp lang-csharp"><![CDATA[
class Person
{
public string FullName
{
get;
set;
}
public string Address
{
get;
set;
}
}
]]></code>
<code lang="csharp lang-csharp"><![CDATA[
class Group : ObservableCollection<Person>
{
public Group (string firstInitial)
{
FirstInitial = firstInitial;
}
public string FirstInitial
{
get;
private set;
}
}
]]></code>
<code lang="csharp lang-csharp"><![CDATA[
ListView CreateListView()
{
var listView = new ListView {
IsGroupingEnabled = true,
GroupDisplayBinding = new Binding ("FirstInitial"),
GroupShortNameBinding = new Binding ("FirstInitial")
};
var template = new DataTemplate (typeof (TextCell));
template.SetBinding (TextCell.TextProperty, "FullName");
template.SetBinding (TextCell.DetailProperty, "Address");
itemsView.ItemTemplate = template;
itemsView.ItemsSource = new[] {
new Group ("C") {
new Person { FullName = "Caprice Nave" }
},
new Group ("J") {
new Person { FullName = "James Smith", Address = "404 Nowhere Street" },
new Person { FullName = "John Doe", Address = "404 Nowhere Ave" }
}
};
}
]]></code>
</example>
</Docs>
</Member>
<Member MemberName="HasUnevenRows">
<MemberSignature Language="C#" Value="public bool HasUnevenRows { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool HasUnevenRows" />
<MemberSignature Language="DocId" Value="P:Microsoft.Maui.Controls.ListView.HasUnevenRows" />
<MemberSignature Language="F#" Value="member this.HasUnevenRows : bool with get, set" Usage="Microsoft.Maui.Controls.ListView.HasUnevenRows" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a Boolean value that indicates whether this <see cref="T:Microsoft.Maui.Controls.ListView" /> element has uneven rows.</summary>
<value>
<see langword="true" /> if this <see cref="T:Microsoft.Maui.Controls.ListView" /> control has uneven rows. Otherwise, <see langword="false" /></value>
<remarks>
<para>To automatically size row height to fit content, the developer first sets the <see cref="P:Microsoft.Maui.Controls.ListView.HasUnevenRows" /> property to <see langword="true" />; and, second, either leaves <see cref="P:Microsoft.Maui.Controls.ListView.RowHeight" /> at its default value of -1, or sets it to -1 if it has been changed.</para>
<para>Alternatively, to ensure a constant size for all rows, the developer first sets <see cref="P:Microsoft.Maui.Controls.ListView.HasUnevenRows" /> to <see langword="false" />, and then either: leaves <see cref="P:Microsoft.Maui.Controls.ListView.RowHeight" /> at its default value of -1 (or sets it back to that value if it has been changed) in order to get the default height for the system; or sets the <see cref="P:Microsoft.Maui.Controls.ListView.RowHeight" /> property to the desired uniform row height.</para>
<para>A more detailed discussion follows, below.</para>
<para>When the app developer sets the <see cref="P:Microsoft.Maui.Controls.ListView.HasUnevenRows" /> property to <see langword="false" />, the behavior of the list view depends on the <see cref="P:Microsoft.Maui.Controls.ListView.RowHeight" /> property. First, if the developer sets the <see cref="P:Microsoft.Maui.Controls.ListView.RowHeight" /> property to a positive value, then all rows in the <see cref="T:Microsoft.Maui.Controls.ListView" />, irrespective of the height of their content, will be as tall as the specified <see cref="P:Microsoft.Maui.Controls.ListView.RowHeight" /> property value. Second, if the develper instead does not set the <see cref="P:Microsoft.Maui.Controls.ListView.RowHeight" /> property, or sets it to a nonpositive value, then all rows in the <see cref="T:Microsoft.Maui.Controls.ListView" />, irrespective of the height of their content, will have the default row height for the system.</para>
<para>When the app developer sets the <see cref="P:Microsoft.Maui.Controls.ListView.HasUnevenRows" /> property to <see langword="true" />, the behavior of the list view still depends on the <see cref="P:Microsoft.Maui.Controls.ListView.RowHeight" /> property. First, if the developer either does not set the <see cref="P:Microsoft.Maui.Controls.ListView.RowHeight" /> property or sets it to -1, list view items are autosized to fit their contents. This is the desired behavior and the intended use case for a <see cref="P:Microsoft.Maui.Controls.ListView.HasUnevenRows" /> value of <see langword="true" />, as noted above. Second, if the developer sets the <see cref="P:Microsoft.Maui.Controls.ListView.RowHeight" /> property to 0 or to a negative value other than -1, then all rows in the <see cref="T:Microsoft.Maui.Controls.ListView" /> will, irrespective of the height of their content, have the default height for the system. Third, and finally, if the developer sets <see cref="P:Microsoft.Maui.Controls.ListView.RowHeight" /> to a positive value, then all rows in the <see cref="T:Microsoft.Maui.Controls.ListView" /> will, irrespective of the height of their content, be as tall as <see cref="P:Microsoft.Maui.Controls.ListView.RowHeight" />, as if <see cref="P:Microsoft.Maui.Controls.ListView.HasUnevenRows" /> had been set to <see langword="false" />.
</para>
</remarks>
</Docs>
</Member>
<Member MemberName="HasUnevenRowsProperty">
<MemberSignature Language="C#" Value="public static readonly Microsoft.Maui.Controls.BindableProperty HasUnevenRowsProperty;" />
<MemberSignature Language="ILAsm" Value=".field public static initonly class Microsoft.Maui.Controls.BindableProperty HasUnevenRowsProperty" />
<MemberSignature Language="DocId" Value="F:Microsoft.Maui.Controls.ListView.HasUnevenRowsProperty" />
<MemberSignature Language="F#" Value=" staticval mutable HasUnevenRowsProperty : Microsoft.Maui.Controls.BindableProperty" Usage="Microsoft.Maui.Controls.ListView.HasUnevenRowsProperty" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.BindableProperty</ReturnType>
</ReturnValue>
<Docs>
<summary>Identifies the <see cref="F:Microsoft.Maui.Controls.ListView.HasUnevenRowsProperty" /> property.</summary>
</Docs>
</Member>
<Member MemberName="Header">
<MemberSignature Language="C#" Value="public object Header { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance object Header" />
<MemberSignature Language="DocId" Value="P:Microsoft.Maui.Controls.ListView.Header" />
<MemberSignature Language="F#" Value="member this.Header : obj with get, set" Usage="Microsoft.Maui.Controls.ListView.Header" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the string, binding, or view that will be displayed at the top of the list view.</summary>
</Docs>
</Member>
<Member MemberName="HeaderElement">
<MemberSignature Language="C#" Value="public Microsoft.Maui.Controls.Element HeaderElement { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Maui.Controls.Element HeaderElement" />
<MemberSignature Language="DocId" Value="P:Microsoft.Maui.Controls.ListView.HeaderElement" />
<MemberSignature Language="F#" Value="member this.HeaderElement : Microsoft.Maui.Controls.Element" Usage="Microsoft.Maui.Controls.ListView.HeaderElement" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember>P:Microsoft.Maui.Controls.IListViewController.HeaderElement</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.Element</ReturnType>
</ReturnValue>
<Docs>
<summary>For internal use by the Microsoft.Maui.Controls platform.</summary>
</Docs>
</Member>
<Member MemberName="HeaderProperty">
<MemberSignature Language="C#" Value="public static readonly Microsoft.Maui.Controls.BindableProperty HeaderProperty;" />
<MemberSignature Language="ILAsm" Value=".field public static initonly class Microsoft.Maui.Controls.BindableProperty HeaderProperty" />
<MemberSignature Language="DocId" Value="F:Microsoft.Maui.Controls.ListView.HeaderProperty" />
<MemberSignature Language="F#" Value=" staticval mutable HeaderProperty : Microsoft.Maui.Controls.BindableProperty" Usage="Microsoft.Maui.Controls.ListView.HeaderProperty" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.BindableProperty</ReturnType>
</ReturnValue>
<Docs>
<summary>Backing store for the <see cref="P:Microsoft.Maui.Controls.ListView.Header" /> property.</summary>
</Docs>
</Member>
<Member MemberName="HeaderTemplate">
<MemberSignature Language="C#" Value="public Microsoft.Maui.Controls.DataTemplate HeaderTemplate { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Maui.Controls.DataTemplate HeaderTemplate" />
<MemberSignature Language="DocId" Value="P:Microsoft.Maui.Controls.ListView.HeaderTemplate" />
<MemberSignature Language="F#" Value="member this.HeaderTemplate : Microsoft.Maui.Controls.DataTemplate with get, set" Usage="Microsoft.Maui.Controls.ListView.HeaderTemplate" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.DataTemplate</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a data template to use to format a data object for display at the top of the list view.</summary>
</Docs>
</Member>
<Member MemberName="HeaderTemplateProperty">
<MemberSignature Language="C#" Value="public static readonly Microsoft.Maui.Controls.BindableProperty HeaderTemplateProperty;" />
<MemberSignature Language="ILAsm" Value=".field public static initonly class Microsoft.Maui.Controls.BindableProperty HeaderTemplateProperty" />
<MemberSignature Language="DocId" Value="F:Microsoft.Maui.Controls.ListView.HeaderTemplateProperty" />
<MemberSignature Language="F#" Value=" staticval mutable HeaderTemplateProperty : Microsoft.Maui.Controls.BindableProperty" Usage="Microsoft.Maui.Controls.ListView.HeaderTemplateProperty" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.BindableProperty</ReturnType>
</ReturnValue>
<Docs>
<summary>Backing store for the <see cref="P:Microsoft.Maui.Controls.ListView.HeaderTemplate" /> property.</summary>
</Docs>
</Member>
<Member MemberName="HorizontalScrollBarVisibility">
<MemberSignature Language="C#" Value="public Microsoft.Maui.Controls.ScrollBarVisibility HorizontalScrollBarVisibility { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype Microsoft.Maui.Controls.ScrollBarVisibility HorizontalScrollBarVisibility" />
<MemberSignature Language="DocId" Value="P:Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibility" />
<MemberSignature Language="F#" Value="member this.HorizontalScrollBarVisibility : Microsoft.Maui.Controls.ScrollBarVisibility with get, set" Usage="Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibility" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.ScrollBarVisibility</ReturnType>
</ReturnValue>
<Docs>
</Docs>
</Member>
<Member MemberName="HorizontalScrollBarVisibilityProperty">
<MemberSignature Language="C#" Value="public static readonly Microsoft.Maui.Controls.BindableProperty HorizontalScrollBarVisibilityProperty;" />
<MemberSignature Language="ILAsm" Value=".field public static initonly class Microsoft.Maui.Controls.BindableProperty HorizontalScrollBarVisibilityProperty" />
<MemberSignature Language="DocId" Value="F:Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibilityProperty" />
<MemberSignature Language="F#" Value=" staticval mutable HorizontalScrollBarVisibilityProperty : Microsoft.Maui.Controls.BindableProperty" Usage="Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibilityProperty" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.BindableProperty</ReturnType>
</ReturnValue>
<Docs>
<summary>The backing store for the <see cref="P:Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibility" /> field.</summary>
</Docs>
</Member>
<Member MemberName="IsGroupingEnabled">
<MemberSignature Language="C#" Value="public bool IsGroupingEnabled { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool IsGroupingEnabled" />
<MemberSignature Language="DocId" Value="P:Microsoft.Maui.Controls.ListView.IsGroupingEnabled" />
<MemberSignature Language="F#" Value="member this.IsGroupingEnabled : bool with get, set" Usage="Microsoft.Maui.Controls.ListView.IsGroupingEnabled" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets whether or not grouping is enabled for <see cref="T:Microsoft.Maui.Controls.ListView" />.</summary>
<value>
<see langword="true" /> if grouping is enabled, <see langword="false" /> otherwise and by default.
</value>
<altmember cref="P:Microsoft.Maui.Controls.ListView.GroupDisplayBinding" />
<altmember cref="P:Microsoft.Maui.Controls.ListView.GroupHeaderTemplate" />
</Docs>
</Member>
<Member MemberName="IsGroupingEnabledProperty">
<MemberSignature Language="C#" Value="public static readonly Microsoft.Maui.Controls.BindableProperty IsGroupingEnabledProperty;" />
<MemberSignature Language="ILAsm" Value=".field public static initonly class Microsoft.Maui.Controls.BindableProperty IsGroupingEnabledProperty" />
<MemberSignature Language="DocId" Value="F:Microsoft.Maui.Controls.ListView.IsGroupingEnabledProperty" />
<MemberSignature Language="F#" Value=" staticval mutable IsGroupingEnabledProperty : Microsoft.Maui.Controls.BindableProperty" Usage="Microsoft.Maui.Controls.ListView.IsGroupingEnabledProperty" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.BindableProperty</ReturnType>
</ReturnValue>
<Docs>
<summary>Identifies the <see cref="F:Microsoft.Maui.Controls.ListView.IsGroupingEnabledProperty" /> property.</summary>
</Docs>
</Member>
<Member MemberName="IsPullToRefreshEnabled">
<MemberSignature Language="C#" Value="public bool IsPullToRefreshEnabled { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool IsPullToRefreshEnabled" />
<MemberSignature Language="DocId" Value="P:Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabled" />
<MemberSignature Language="F#" Value="member this.IsPullToRefreshEnabled : bool with get, set" Usage="Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabled" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a value that tells whether the user can swipe down to cause the application to refresh.</summary>
</Docs>
</Member>
<Member MemberName="IsPullToRefreshEnabledProperty">
<MemberSignature Language="C#" Value="public static readonly Microsoft.Maui.Controls.BindableProperty IsPullToRefreshEnabledProperty;" />
<MemberSignature Language="ILAsm" Value=".field public static initonly class Microsoft.Maui.Controls.BindableProperty IsPullToRefreshEnabledProperty" />
<MemberSignature Language="DocId" Value="F:Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabledProperty" />
<MemberSignature Language="F#" Value=" staticval mutable IsPullToRefreshEnabledProperty : Microsoft.Maui.Controls.BindableProperty" Usage="Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabledProperty" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.BindableProperty</ReturnType>
</ReturnValue>
<Docs>
<summary>Backing store for the <see cref="P:Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabled" /> property.</summary>
</Docs>
</Member>
<Member MemberName="IsRefreshing">
<MemberSignature Language="C#" Value="public bool IsRefreshing { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool IsRefreshing" />
<MemberSignature Language="DocId" Value="P:Microsoft.Maui.Controls.ListView.IsRefreshing" />
<MemberSignature Language="F#" Value="member this.IsRefreshing : bool with get, set" Usage="Microsoft.Maui.Controls.ListView.IsRefreshing" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a value that tells whether the list view is currently refreshing.</summary>
</Docs>
</Member>
<Member MemberName="IsRefreshingProperty">
<MemberSignature Language="C#" Value="public static readonly Microsoft.Maui.Controls.BindableProperty IsRefreshingProperty;" />
<MemberSignature Language="ILAsm" Value=".field public static initonly class Microsoft.Maui.Controls.BindableProperty IsRefreshingProperty" />
<MemberSignature Language="DocId" Value="F:Microsoft.Maui.Controls.ListView.IsRefreshingProperty" />
<MemberSignature Language="F#" Value=" staticval mutable IsRefreshingProperty : Microsoft.Maui.Controls.BindableProperty" Usage="Microsoft.Maui.Controls.ListView.IsRefreshingProperty" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.BindableProperty</ReturnType>
</ReturnValue>
<Docs>
<summary>Backing store for the <see cref="P:Microsoft.Maui.Controls.ListView.IsRefreshing" /> property.</summary>
</Docs>
</Member>
<Member MemberName="ItemAppearing">
<MemberSignature Language="C#" Value="public event EventHandler<Microsoft.Maui.Controls.ItemVisibilityEventArgs> ItemAppearing;" />
<MemberSignature Language="ILAsm" Value=".event class System.EventHandler`1<class Microsoft.Maui.Controls.ItemVisibilityEventArgs> ItemAppearing" />
<MemberSignature Language="DocId" Value="E:Microsoft.Maui.Controls.ListView.ItemAppearing" />
<MemberSignature Language="F#" Value="member this.ItemAppearing : EventHandler<Microsoft.Maui.Controls.ItemVisibilityEventArgs> " Usage="member this.ItemAppearing : System.EventHandler<Microsoft.Maui.Controls.ItemVisibilityEventArgs> " />
<MemberType>Event</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.EventHandler<Microsoft.Maui.Controls.ItemVisibilityEventArgs></ReturnType>
</ReturnValue>
<Docs>
<summary>Occurs when the visual representation of an item is being added to the visual layout.</summary>
<remarks>This method is guaranteed to fire at some point before the element is on screen.</remarks>
</Docs>
</Member>
<Member MemberName="ItemDisappearing">
<MemberSignature Language="C#" Value="public event EventHandler<Microsoft.Maui.Controls.ItemVisibilityEventArgs> ItemDisappearing;" />
<MemberSignature Language="ILAsm" Value=".event class System.EventHandler`1<class Microsoft.Maui.Controls.ItemVisibilityEventArgs> ItemDisappearing" />