Adjusted layout to work for 96 DPI - B2010-009

Change Bar Combo - Width
Added code to adjust the location and width of the results style combobox - B2010-009
This commit is contained in:
Rich 2011-01-04 21:13:34 +00:00
parent 0a60b9139c
commit d376368c20
2 changed files with 1342 additions and 1337 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1601,6 +1601,11 @@ namespace Volian.Controls.Library
{ {
OnPrintRequest(new DisplaySearchEventArgs(ReportTitle, SearchString, lbSrchResults.DataSource as ICollection<ItemInfo>)); OnPrintRequest(new DisplaySearchEventArgs(ReportTitle, SearchString, lbSrchResults.DataSource as ICollection<ItemInfo>));
} }
private void panSearchButtons_Resize(object sender, EventArgs e)
{
cmbResultsStyle.Left = labelX1.Right + 3;
cmbResultsStyle.Width = btnClearSearchResults.Left - cmbResultsStyle.Left - 3;
}
} }
#region Annoation Search Type Class #region Annoation Search Type Class
// this class is used to generate the list of annotations to search. // this class is used to generate the list of annotations to search.