₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,512 members, 8,422,389 topics. Date: Monday, 08 June 2026 at 09:05 AM

Toggle theme

Omosis2's Posts

Nairaland ForumOmosis2's ProfileOmosis2's Posts

1 (of 1 pages)

FoodRe: Cook In Your Kitchen, Take Pictures And Post It Here. SIMPLE! by omosis2: 8:42am On Feb 09, 2017
This is what I prepare for my husband and Kids before going to work and school respectively.

Want to try Breakfast Toasties, look here

http://foodibase.com/recipes/breakfast-toasties-sweet-toasties-recipe/

FoodRe: Cook In Your Kitchen, Take Pictures And Post It Here. SIMPLE! by omosis2: 8:39am On Feb 09, 2017
Love
ProgrammingBind A Collection Of Dictionaries To A Grid by omosis2(op): 1:45am On Jun 05, 2016
how can i bind a collection of dictionaries to a grid?
ProgrammingRe: Column Visibility And Sequence by omosis2: 8:00pm On May 19, 2016
Lifeguru02:
which is the best way I can do column visibility and sequence to my grid. I am using dapfor wpf gridcontrol.
A programmer may also set column visibility and position. To define a manage visibility columns have Column.Visible property. Column visibility covers only the column panel. It is also possible to group data by hidden columns. Moreover, columns that are used for grouping are usually not displayed. An example of managing column visibility via API is shown below:
C#
Header header = new Header();
header.Columns.Add(new Column("Column1"wink);
header.Columns.Add(new Column("Column2"wink);

Debug.Assert(header[0].Id == "Column1"wink;
Debug.Assert(header[1].Id == "Column2"wink;
Debug.Assert(header.VisibleColumns[0].Id == "Column1"wink;
Debug.Assert(header.VisibleColumns[1].Id == "Column2"wink;
Debug.Assert(header["Column1"].VisibleIndex == 0);
Debug.Assert(header["Column2"].VisibleIndex == 1);

//Hide the first column
header["Column1"].Visible = false;

//The header has the single visible column
Debug.Assert(header.VisibleColumns.Count == 1);
Debug.Assert(header.VisibleColumns[0].Id == "Column2"wink;
Debug.Assert(header["Column2"].VisibleIndex == 0);

//Enumerate all visible columns
foreach (Column column in header.VisibleColumns)
{
//Some code here...
}

//Hide all columns
header.VisibleColumns.Clear();
ProgrammingWhat Is Dock Row by omosis2(op): 7:00pm On May 19, 2016
what can i do to make your row stay on top or at the bottom of you hierarchy.
ProgrammingSecondary Thread by omosis2(op): 8:19am On May 19, 2016
What should I do for my wpf grid to receive and handle data although notifications arrive from a secondary thread.

1 (of 1 pages)