PDA

View Full Version : نحوه تغییر فونت در LISTVIEW یا LISTBOX



m-taheri
جمعه 27 شهریور 1388, 19:35 عصر
با سلام

چطوری میشه توی یه LISTBOX یا LISTVIEW فونت را عوض کرد؟

در واقع میخوام به صورت BOLD باشه

mahdi_7610
جمعه 27 شهریور 1388, 20:31 عصر
سلام
خوب برای LISTBOX از قسمت propertise مربوط به اون قسمت Font میتونید تغییرات را بدید .

واسه LISTVIEW هم همینطور

m-taheri
یک شنبه 29 شهریور 1388, 20:20 عصر
توی قسمت properties گزینه ای بنام bold وجود ندارد.

در ضمن من نمیخوام تمام متن به صورت bold باشه

به عنوان مثال میخوام اینطوری باشه :


Detected Device : Nokia N79

IMEI : 34796789400044

AliRezaPro
دوشنبه 30 شهریور 1388, 00:08 صبح
Detected Device و IMEI بصورت ثابت اضافه مشوند؟

m-taheri
دوشنبه 30 شهریور 1388, 18:23 عصر
Detected Device و IMEI بصورت ثابت اضافه مشوند؟



بله
-----------------------

AliRezaPro
سه شنبه 31 شهریور 1388, 00:45 صبح
// Declare the Listview object.
internal System.Windows.Forms.ListView myListView;

// Initialize the ListView object with subitems of a different
// style than the default styles for the ListView.
private void InitializeListView()
{

// Set the Location, View and Width properties for the
// ListView object.
myListView = new ListView();
myListView.Location = new System.Drawing.Point(20, 20);
myListView.Width = 250;

// The View property must be set to Details for the
// subitems to be visible.
myListView.View = View.Details;

// Each SubItem object requires a column, so add three columns.
this.myListView.Columns.Add("Key", 50, HorizontalAlignment.Left);
this.myListView.Columns.Add("A", 100, HorizontalAlignment.Left);
this.myListView.Columns.Add("B", 100, HorizontalAlignment.Left);

// Add a ListItem object to the ListView.
ListViewItem entryListItem = myListView.Items.Add("Items");

// Set UseItemStyleForSubItems property to false to change
// look of subitems.
entryListItem.UseItemStyleForSubItems = false;

// Add the expense subitem.
ListViewItem.ListViewSubItem expenseItem =
entryListItem.SubItems.Add("Expense");

// Change the expenseItem object's color and font.
expenseItem.ForeColor = System.Drawing.Color.Red;
expenseItem.Font = new System.Drawing.Font(
"Arial", 10, System.Drawing.FontStyle.Italic);

// Add a subitem called revenueItem
ListViewItem.ListViewSubItem revenueItem =
entryListItem.SubItems.Add("Revenue");

// Change the revenueItem object's color and font.
revenueItem.ForeColor = System.Drawing.Color.Blue;
revenueItem.Font = new System.Drawing.Font(
"Times New Roman", 10, System.Drawing.FontStyle.Bold);

// Add the ListView to the form.
this.Controls.Add(this.myListView);
}