Christian Angermeier


Mit dem folgenden Code wird in einer XpoSession eine XPCollection erstellt und eine Sortierung hinzugefügt:   XPCollection BeispielListe = new XPCollection(session, typeof(Beispiel), new GroupOperator( new BinaryOperator("Param1", 123), new BinaryOperator("Param2", "test"))); SortingCollection sc = new SortingCollection(); sc.Add(new SortProperty("Param1", DevExpress.Xpo.DB.SortingDirection.Ascending)); BeispielListe.Sorting = sc; foreach (Beispiel b in BeispielListe) { Do what ever […]

Wie sortiere ich eine XPCollection?


Dies lässt sich über einen ViewController mit wenigen Zeilen realisieren. Erstelle dazu in Deinem XAF Projekt im Module Win Projekt einen Controller und füge in das Event „OnViewControlsCreated“ folgenden Code hinzu: base.OnViewControlsCreated(); protected override void OnViewControlsCreated() { base.OnViewControlsCreated(); // Access and customize the target View control. _listEditor = ((ListView)View).Editor as […]

Footerzeile in allen ListViews anzeigen