diff --git a/CxViewerAction/BaseInterfaces/IGraph.cs b/CxViewerAction/BaseInterfaces/IGraph.cs
index a4f0682a..e72bedbb 100644
--- a/CxViewerAction/BaseInterfaces/IGraph.cs
+++ b/CxViewerAction/BaseInterfaces/IGraph.cs
@@ -33,7 +33,7 @@ public interface IGraph
int Height { get; }
///
- /// Gets or sets list of path sequances
+ /// Gets or sets list of path sequences
///
List Paths { get; set; }
@@ -45,7 +45,7 @@ public interface IGraph
///
/// Gets item position in graph matrix start from top-left corner
///
- /// Grapth element
+ /// Graph element
/// X-Y position of element inside graph
Point GetPosition(IGraphItem item);
@@ -67,17 +67,17 @@ public interface IGraphPath : IComparable
IGraphItem Current { get; set; }
///
- /// Problem sequance length
+ /// Problem sequence length
///
int Width { get; }
///
- /// Gets or sets problems sequance from begin to end
+ /// Gets or sets problems sequence from begin to end
///
List DirectFlow { get; set; }
///
- /// Get the position of first path element in comparission
+ /// Get the position of first path element in comparison
/// with most top element in all graph paths
///
int Top { get; }
diff --git a/CxViewerAction/Dispatchers/Dispatcher.cs b/CxViewerAction/Dispatchers/Dispatcher.cs
index e46aecfb..0d09ff40 100644
--- a/CxViewerAction/Dispatchers/Dispatcher.cs
+++ b/CxViewerAction/Dispatchers/Dispatcher.cs
@@ -8,7 +8,7 @@
namespace CxViewerAction.Dispatchers
{
///
- /// Handler for excution
+ /// Handler for execution
///
///
///
diff --git a/CxViewerAction/Entities/Enum/SimpleDecision.cs b/CxViewerAction/Entities/Enum/SimpleDecision.cs
index 08218c70..b91dbd21 100644
--- a/CxViewerAction/Entities/Enum/SimpleDecision.cs
+++ b/CxViewerAction/Entities/Enum/SimpleDecision.cs
@@ -5,7 +5,7 @@
namespace CxViewerAction.Entities.Enum
{
///
- /// Represent user choise
+ /// Represent user choice
///
public enum SimpleDecision
{
@@ -20,7 +20,7 @@ public enum SimpleDecision
Yes = 1,
///
- /// Disagree deicission
+ /// Disagree decision
///
No = 2
}
diff --git a/CxViewerAction/Entities/Enumeration/SerializableDictionary.cs b/CxViewerAction/Entities/Enumeration/SerializableDictionary.cs
index 7bd85ee2..b6ddf977 100644
--- a/CxViewerAction/Entities/Enumeration/SerializableDictionary.cs
+++ b/CxViewerAction/Entities/Enumeration/SerializableDictionary.cs
@@ -6,7 +6,7 @@
namespace CxViewerAction.Entities.Enumeration
{
///
- /// Class represent Dicitionary object with serialization capability
+ /// Class represent Dictionary object with serialization capability
///
///
///
diff --git a/CxViewerAction/Entities/FormEntity/ScanProgress.cs b/CxViewerAction/Entities/FormEntity/ScanProgress.cs
index 38763768..dc1fef56 100644
--- a/CxViewerAction/Entities/FormEntity/ScanProgress.cs
+++ b/CxViewerAction/Entities/FormEntity/ScanProgress.cs
@@ -6,7 +6,7 @@
namespace CxViewerAction.Entities.FormEntity
{
///
- /// Represent scanb dialod data
+ /// Represent scan dialog data
///
public class ScanProgress
{
diff --git a/CxViewerAction/Entities/Graph.cs b/CxViewerAction/Entities/Graph.cs
index e442808f..fb2c952c 100644
--- a/CxViewerAction/Entities/Graph.cs
+++ b/CxViewerAction/Entities/Graph.cs
@@ -243,7 +243,7 @@ public ReportQueryItemResult QueryItemResult
}
///
- /// Grapth element
+ /// Graph element
///
public class GraphItem : IGraphItem
{
diff --git a/CxViewerAction/Entities/LoginData.cs b/CxViewerAction/Entities/LoginData.cs
index a473567d..d2d94979 100644
--- a/CxViewerAction/Entities/LoginData.cs
+++ b/CxViewerAction/Entities/LoginData.cs
@@ -163,7 +163,7 @@ public string ServerEncrypted
}
///
- /// Gets or sets value indicating that connection must be established throw htts protocol
+ /// Gets or sets value indicating that connection must be established throw HTTPS protocol
///
public bool Ssl
{
@@ -172,7 +172,7 @@ public bool Ssl
}
///
- /// Get or set Entity prorepty
+ /// Get or set Entity property
///
public EntityId ID { get { return _id; } set { _id = value; } }
@@ -182,7 +182,7 @@ public bool Ssl
public int UpdateStatusInterval { get { return _updateStatusInterval; } set { _updateStatusInterval = value; } }
///
- /// Get or set dialog state. If true - dialog validated sucessfull and user hit button go next step
+ /// Get or set dialog state. If true - dialog validated successful and user hit button go next step
///
public bool IsLogging { get { return _isLogging; } set { _isLogging = value; } }
@@ -242,7 +242,7 @@ public List BindedProjects
}
///
- /// Gets or sets max allowed zip file size in megabites for scan
+ /// Gets or sets max allowed zip file size in megabytes for scan
///
public int MaxZipFileSize
{
diff --git a/CxViewerAction/Entities/Project.cs b/CxViewerAction/Entities/Project.cs
index 1611a527..3950a9b6 100644
--- a/CxViewerAction/Entities/Project.cs
+++ b/CxViewerAction/Entities/Project.cs
@@ -12,7 +12,7 @@ public class Project
{
#region [Properties]
///
- /// Sulution project name
+ /// Solution project name
///
private string _projectName;
@@ -26,7 +26,7 @@ public string ProjectName
}
///
- /// Sulution path or single project path
+ /// Solution path or single project path
///
private string _rootPath;
@@ -40,7 +40,7 @@ public string RootPath
}
///
- /// Sulution projects full file paths
+ /// Solution projects full file paths
///
private List _projectPaths;
diff --git a/CxViewerAction/Entities/Upload.cs b/CxViewerAction/Entities/Upload.cs
index 752e22f2..be7ddefc 100644
--- a/CxViewerAction/Entities/Upload.cs
+++ b/CxViewerAction/Entities/Upload.cs
@@ -82,7 +82,7 @@ public string Team
}
///
- /// If true - upload form was validated sucessfully and user confirm to start scanning
+ /// If true - upload form was validated successfully and user confirm to start scanning
///
public bool IsUploading
{
diff --git a/CxViewerAction/Entities/WebServiceEntity/LoginResult.cs b/CxViewerAction/Entities/WebServiceEntity/LoginResult.cs
index bfd484ee..1b316d1b 100644
--- a/CxViewerAction/Entities/WebServiceEntity/LoginResult.cs
+++ b/CxViewerAction/Entities/WebServiceEntity/LoginResult.cs
@@ -42,7 +42,7 @@ public string SessionId
}
///
- /// User authentification data
+ /// User authentication data
///
public LoginData AuthenticationData
{
diff --git a/CxViewerAction/Entities/WebServiceEntity/QueryDescriptionResult.cs b/CxViewerAction/Entities/WebServiceEntity/QueryDescriptionResult.cs
index ae22293d..da1b0c61 100644
--- a/CxViewerAction/Entities/WebServiceEntity/QueryDescriptionResult.cs
+++ b/CxViewerAction/Entities/WebServiceEntity/QueryDescriptionResult.cs
@@ -36,7 +36,7 @@ public int QueryId
}
///
- /// Gets or sets value indication that object received succesfull
+ /// Gets or sets value indication that object received successful
///
public bool IsSuccesfull
{
diff --git a/CxViewerAction/Entities/WebServiceEntity/StatusScanResult.cs b/CxViewerAction/Entities/WebServiceEntity/StatusScanResult.cs
index 3b8d6470..6689eb30 100644
--- a/CxViewerAction/Entities/WebServiceEntity/StatusScanResult.cs
+++ b/CxViewerAction/Entities/WebServiceEntity/StatusScanResult.cs
@@ -30,7 +30,7 @@ public enum RunStatus
Queued = 3,
///
- /// Scan cann't be processed
+ /// Scan can't be processed
///
Failed = 4
}
diff --git a/CxViewerAction/Helpers/BackgroundWorkerHelper.cs b/CxViewerAction/Helpers/BackgroundWorkerHelper.cs
index 1ebd9ca4..9d740448 100644
--- a/CxViewerAction/Helpers/BackgroundWorkerHelper.cs
+++ b/CxViewerAction/Helpers/BackgroundWorkerHelper.cs
@@ -17,12 +17,12 @@ public class BackgroundWorkerHelper
#region [Private Constants]
///
- /// Set the numbers of attempts to execute function in exeception occurs
+ /// Set the numbers of attempts to execute function in exception occurs
///
private int _repeatCountOnException = 3;
///
- /// Set the delay interval beetween repeat
+ /// Set the delay interval between repeat
///
private int _repeatIntervalOnException = 15000;
@@ -36,12 +36,12 @@ public class BackgroundWorkerHelper
private delegate object _doWorkDelegate(object state);
///
- /// Main background worker funck
+ /// Main background worker function
///
private Action _doWorkFunc = null;
///
- /// Relogin handler
+ /// Re-login handler
///
private EventHandler _doReloginFunc = null;
@@ -94,7 +94,7 @@ public BackgroundWorkerHelper(Action func)
/// Perform background job and show view while process executes
///
/// View title message
- /// If false - cancel buton in supported view was pressed
+ /// If false - cancel button in supported view was pressed
public bool DoWork(string message)
{
if (_doWorkFunc == null)
diff --git a/CxViewerAction/Helpers/ProblemDescriptionHelper.cs b/CxViewerAction/Helpers/ProblemDescriptionHelper.cs
index c1ecaec8..9b1ce2ed 100644
--- a/CxViewerAction/Helpers/ProblemDescriptionHelper.cs
+++ b/CxViewerAction/Helpers/ProblemDescriptionHelper.cs
@@ -17,7 +17,7 @@ public class ProblemDescriptionHelper
/// Find specified problem description
///
/// Problem identifier
- /// If file description was found method returns full path to file, otherwise retutn null
+ /// If file description was found method returns full path to file, otherwise return null
public static string GetStoredProblem(int queryId)
{
QueryDescriptionResult queryResult = new QueryDescriptionResult();
diff --git a/CxViewerAction/Helpers/StorageHelper.cs b/CxViewerAction/Helpers/StorageHelper.cs
index 55357e13..116098c5 100644
--- a/CxViewerAction/Helpers/StorageHelper.cs
+++ b/CxViewerAction/Helpers/StorageHelper.cs
@@ -27,7 +27,7 @@ static string BaseDir
#region [Static Methods]
///
- /// Retutn content of specific file
+ /// Returns contents of specific file
///
///
///
diff --git a/CxViewerAction/Services/CxWebServiceClient.cs b/CxViewerAction/Services/CxWebServiceClient.cs
index eb2bdfff..e06f50fb 100644
--- a/CxViewerAction/Services/CxWebServiceClient.cs
+++ b/CxViewerAction/Services/CxWebServiceClient.cs
@@ -22,7 +22,7 @@ public class CxWebServiceClient
#region [Public Properties]
///
- /// Servive client object
+ /// Service client object
///
public CxViewerAction.Services.CxVSWebServiceWrapper ServiceClient { get { return _client; } }
diff --git a/CxViewerAction/Views/DockedView/IPerspectiveResultView.cs b/CxViewerAction/Views/DockedView/IPerspectiveResultView.cs
index 08f83cf5..59c0a961 100644
--- a/CxViewerAction/Views/DockedView/IPerspectiveResultView.cs
+++ b/CxViewerAction/Views/DockedView/IPerspectiveResultView.cs
@@ -14,7 +14,7 @@ public interface IPerspectiveResultView
#region [Public Events]
///
- /// Event that fired when user binded project and changed a scan by using UI
+ /// Event that fired when user binds project and changed a scan by using UI
///
event Action SelectedScanChanged;
@@ -45,7 +45,7 @@ public interface IPerspectiveResultView
#region[Public Methods]
///
- /// Bind contols with object values
+ /// Bind controls with object values
///
void BindData();
diff --git a/CxViewerAction/Views/DockedView/IPerspectiveView.cs b/CxViewerAction/Views/DockedView/IPerspectiveView.cs
index 4e069bd4..434a1b32 100644
--- a/CxViewerAction/Views/DockedView/IPerspectiveView.cs
+++ b/CxViewerAction/Views/DockedView/IPerspectiveView.cs
@@ -19,7 +19,7 @@ public interface IPerspectiveView
event Action SelectedNodeChanged;
///
- /// Event that fired when user binded project and changed a scan by using UI
+ /// Event that fired when user binds project and changed a scan by using UI
///
event Action SelectedScanChanged;
@@ -47,7 +47,7 @@ public interface IPerspectiveView
void UpdateTreeItemInfo();
///
- /// Bind contols with object values
+ /// Bind controls with object values
///
void BindData();
diff --git a/CxViewerAction/Views/DockedView/OptionsAuthCtrl.cs b/CxViewerAction/Views/DockedView/OptionsAuthCtrl.cs
index 1b267c29..3803dd08 100644
--- a/CxViewerAction/Views/DockedView/OptionsAuthCtrl.cs
+++ b/CxViewerAction/Views/DockedView/OptionsAuthCtrl.cs
@@ -139,7 +139,7 @@ private void BindDataToView()
}
///
- /// Bind form contol values to object data
+ /// Bind form control values to object data
///
///
private LoginData BindDataFromView()
diff --git a/CxViewerAction/Views/DockedView/PerspectiveCtrl.cs b/CxViewerAction/Views/DockedView/PerspectiveCtrl.cs
index 9ca8492d..68275df6 100644
--- a/CxViewerAction/Views/DockedView/PerspectiveCtrl.cs
+++ b/CxViewerAction/Views/DockedView/PerspectiveCtrl.cs
@@ -93,7 +93,7 @@ public void UpdateTreeItemInfo()
}
///
- /// Bind object data to form controld
+ /// Bind object data to form control
///
public void BindData()
{
@@ -105,7 +105,7 @@ public void BindData()
}
///
- /// Set form visiblity and show specified loading message if no active
+ /// Set form visibility and show specified loading message if no active
///
///
///
diff --git a/CxViewerAction/Views/DockedView/PerspectiveGraphCtrl.cs b/CxViewerAction/Views/DockedView/PerspectiveGraphCtrl.cs
index d1fc4db4..43655381 100644
--- a/CxViewerAction/Views/DockedView/PerspectiveGraphCtrl.cs
+++ b/CxViewerAction/Views/DockedView/PerspectiveGraphCtrl.cs
@@ -23,7 +23,7 @@ public partial class PerspectiveGraphCtrl : UserControl, IPerspectiveGraphView
#region [Private Members]
///
- /// Used for restoring scroll X position aftet rebinding
+ /// Used for restoring scroll X position after rebinding
///
private int _scroll_pos_x = 0;
diff --git a/CxViewerAction/Views/DockedView/PerspectivePathCtrl.cs b/CxViewerAction/Views/DockedView/PerspectivePathCtrl.cs
index 06c4f3ac..f808a4e5 100644
--- a/CxViewerAction/Views/DockedView/PerspectivePathCtrl.cs
+++ b/CxViewerAction/Views/DockedView/PerspectivePathCtrl.cs
@@ -71,7 +71,7 @@ public void ClearView()
}
///
- /// Bind object data to form controls. Generate path sequance
+ /// Bind object data to form controls. Generate path sequence
///
public void BindData(int index)
{
diff --git a/CxViewerAction/Views/DockedView/PerspectiveResultCtrl.cs b/CxViewerAction/Views/DockedView/PerspectiveResultCtrl.cs
index c498516c..44e47bc8 100644
--- a/CxViewerAction/Views/DockedView/PerspectiveResultCtrl.cs
+++ b/CxViewerAction/Views/DockedView/PerspectiveResultCtrl.cs
@@ -149,14 +149,14 @@ public ReportResult Report
#region [Public Methods]
///
- /// Bind object data to form controld
+ /// Bind object data to form control
///
public void BindData()
{
}
///
- /// Set form visiblity and show specified loading message if no active
+ /// Set form visibility and show specified loading message if no active
///
///
///
diff --git a/CxViewerAction/Views/ILoginView.cs b/CxViewerAction/Views/ILoginView.cs
index 702d41aa..9bd2b4ac 100644
--- a/CxViewerAction/Views/ILoginView.cs
+++ b/CxViewerAction/Views/ILoginView.cs
@@ -10,7 +10,7 @@ namespace CxViewerAction.Views
public interface ILoginView : IView
{
///
- /// Get or set entity identitifier
+ /// Get or set entity identifier
///
EntityId EntityId { get; set; }
diff --git a/CxViewerAction/Views/IScanView.cs b/CxViewerAction/Views/IScanView.cs
index f50023fa..6006b87b 100644
--- a/CxViewerAction/Views/IScanView.cs
+++ b/CxViewerAction/Views/IScanView.cs
@@ -54,7 +54,7 @@ public interface IScanView : IView
EventHandler RunInBackgroundHandler { set; get; }
///
- /// Cancel buttom handler
+ /// Cancel button handler
///
EventHandler CancelHandler { set; get; }
diff --git a/CxViewerAction/Views/OidcLoginFrm.cs b/CxViewerAction/Views/OidcLoginFrm.cs
index edcc3423..b772c961 100644
--- a/CxViewerAction/Views/OidcLoginFrm.cs
+++ b/CxViewerAction/Views/OidcLoginFrm.cs
@@ -69,7 +69,7 @@ private void SamlLoginFrm_FormClosing(object sender, FormClosingEventArgs e)
}
///
- /// This fires everytime WebView2 loads a form but it only does something when a page load
+ /// This fires every time WebView2 loads a form but it only does something when a page load
/// URL contains a "code=" values, this happens after a successful login.
///
private void OnDocumentCompleted(object sender, CoreWebView2NavigationCompletedEventArgs eventArgs)
diff --git a/CxViewerAction/Views/UploadFrm.cs b/CxViewerAction/Views/UploadFrm.cs
index 5bc2f717..67156cff 100644
--- a/CxViewerAction/Views/UploadFrm.cs
+++ b/CxViewerAction/Views/UploadFrm.cs
@@ -219,7 +219,7 @@ private void txtProjectName_Validating(object sender, CancelEventArgs e)
}
///
- /// Validation handler to control thar preset item was selected
+ /// Validation handler to control the preset item, if selected
///
///
///
@@ -235,7 +235,7 @@ private void cmbPreset_Validating(object sender, CancelEventArgs e)
}
///
- /// Validation handler to control thar team item was selected
+ /// Validation handler to control the team item, if selected
///
///
///
diff --git a/CxViewerAction/Views/WaitFrm.cs b/CxViewerAction/Views/WaitFrm.cs
index 94c15942..4fb33b2f 100644
--- a/CxViewerAction/Views/WaitFrm.cs
+++ b/CxViewerAction/Views/WaitFrm.cs
@@ -15,7 +15,7 @@ public partial class WaitFrm : Form, IWaitView
#region [Delegates]
///
- /// Delegate mrthod. Used for async call Cancel handler function
+ /// Delegate method. Used for async call Cancel handler function
///
private delegate void CancelingDelegate();
diff --git a/CxViewerDgvFilterPopup/FilterPopup/ColumnFilterEvent.cs b/CxViewerDgvFilterPopup/FilterPopup/ColumnFilterEvent.cs
index 4d1b400f..87263cd4 100644
--- a/CxViewerDgvFilterPopup/FilterPopup/ColumnFilterEvent.cs
+++ b/CxViewerDgvFilterPopup/FilterPopup/ColumnFilterEvent.cs
@@ -63,7 +63,7 @@ public bool Handled {
///
/// Initializes a new instance of the class.
///
- /// The DstaGridView column.
+ /// The DataGridView column.
/// The column filter instance.
public ColumnFilterEventArgs(DataGridViewColumn Column, DgvBaseColumnFilter ColumnFilter) {
this.mColumn = Column;
diff --git a/CxViewerDgvFilterPopup/FilterPopup/DgvBaseColumnFilter.cs b/CxViewerDgvFilterPopup/FilterPopup/DgvBaseColumnFilter.cs
index be6833b8..085f2410 100644
--- a/CxViewerDgvFilterPopup/FilterPopup/DgvBaseColumnFilter.cs
+++ b/CxViewerDgvFilterPopup/FilterPopup/DgvBaseColumnFilter.cs
@@ -31,7 +31,7 @@ public enum VFilterAlignment { Left, Right, Center }
///
/// NOTE:
/// This class must be intended as an abstract class. However, declaring it as abstract,
- /// would generate errors whitin the designer when designing derived classes.
+ /// would generate errors within the designer when designing derived classes.
///
///
/// You should override to provide a filter expression construction
@@ -186,7 +186,7 @@ public VFilterAlignment VFilterAlignment {
#region FILTER INITIALIZATION, EXPRESSION BUILDING, EVENT MANAGING
///
- /// Called by the filter manager , inits the column filter and raises the FilterInitializing event.
+ /// Called by the filter manager , initializes the column filter and raises the FilterInitializing event.
///
/// The filter manager .
/// The filter host.
@@ -217,10 +217,10 @@ public void Init(DgvFilterManager FilterManager, DgvBaseFilterHost FilterHost, D
///
/// When this column filter control is added to the column filters array of the filter manager ,
/// the latter calls the method which, in turn, calls this method.
- /// You can ovverride this method to provide initialization code.
+ /// You can override this method to provide initialization code.
///
protected virtual void OnFilterInitializing(object sender, CancelEventArgs e) {
- // Ovverride to add custom init code
+ // Override to add custom init code
if (FilterInitializing != null) FilterInitializing(sender, e);
}
diff --git a/CxViewerDgvFilterPopup/FilterPopup/DgvBaseFilterHost.cs b/CxViewerDgvFilterPopup/FilterPopup/DgvBaseFilterHost.cs
index 74f05dce..6a2aa07d 100644
--- a/CxViewerDgvFilterPopup/FilterPopup/DgvBaseFilterHost.cs
+++ b/CxViewerDgvFilterPopup/FilterPopup/DgvBaseFilterHost.cs
@@ -15,16 +15,16 @@ namespace DgvFilterPopup {
/// The purpose of the filter host control is to show a popup near a right-clicked column and to
/// host child column filter controls.
/// When the popup is shown, only the column filter control related to right-clicked column
- /// is visibile.
+ /// is visible.
/// DgvBaseFilterHost is a derivation of UserControl and provide functionalities to
/// cooperate with .
///
/// NOTE:
/// This class must be intended as an abstract class. However, declaring it as abstract,
- /// would generate errors whitin the designer when designing derived classes.
+ /// would generate errors within the designer when designing derived classes.
///
///
- /// In your derivation, you have to provide a host area (such as a panel) and ovverride the
+ /// In your derivation, you have to provide a host area (such as a panel) and override the
/// to return it. Also, create visual elements
/// for remove filter , remove all filters , apply filter and use the
/// DgvFilterManager methods and
@@ -133,7 +133,7 @@ public DgvFilterManager FilterManager {
///
- /// Gets or sets the currently visibile column filter control
+ /// Gets or sets the currently visible column filter control
///
public DgvBaseColumnFilter CurrentColumnFilter {
get { return mCurrentColumnFilter; }
@@ -168,10 +168,10 @@ public Size SizeDifference {
#region HELPERS
///
- /// Performs growing / shrinking of the filter host to best fit the current visibile column filter .
+ /// Performs growing / shrinking of the filter host to best fit the current visible column filter .
///
///
- /// Ovverride this method to provide your own resize logic.
+ /// Override this method to provide your own resize logic.
///
protected virtual void DoAutoFit() {
Size NewHostSize = Size.Add(mSizeDifference, mCurrentColumnFilter.Size);
@@ -187,7 +187,7 @@ protected virtual void DoAutoFit() {
/// Aligns the column filter into the filter client area.
///
///
- /// Ovverride this method to provide your own alignment logic.
+ /// Override this method to provide your own alignment logic.
///
protected void AlignFilter() {
int x = 0; // VFilterAlignmentType.Left:
@@ -253,7 +253,7 @@ public static Region BitmapToRegion(Bitmap bitmap, Color transparencyColor) {
/// When the user clicks on an ComboBox item that is outside of the
/// host area, this cause an unwanted closing of the filter host .
/// If you use a ComboBox in a customized column filter ,
- /// be sure to call this method in your filter intitialitazion code.
+ /// be sure to call this method in your filter initialization code.
///
public void RegisterComboBox (ComboBox comboBox){
comboBox.DropDown += new EventHandler(onDropDown);
diff --git a/CxViewerDgvFilterPopup/FilterPopup/DgvFilterManager.cs b/CxViewerDgvFilterPopup/FilterPopup/DgvFilterManager.cs
index 3db24a83..7e5586c6 100644
--- a/CxViewerDgvFilterPopup/FilterPopup/DgvFilterManager.cs
+++ b/CxViewerDgvFilterPopup/FilterPopup/DgvFilterManager.cs
@@ -17,7 +17,7 @@ namespace DgvFilterPopup {
/// to right click on column headers and to perform some custom painting on the grid.
/// When the user right clicks a column header, the DgvFilterManager shows a popup near the column.
/// This popup is a control that serves as host for other controls, one for each column. Only one of
- /// these child controls is visibile, based on clicked column.
+ /// these child controls is visible, based on clicked column.
/// We have one filter host control and many column filter child controls.
///
/// The filter host control must be a derivation of the class, while filter controls must be
@@ -55,7 +55,7 @@ public class DgvFilterManager {
private string mBaseFilter = ""; // Developer provided filter expression
- private int mCurrentColumnIndex = -1; // Column Index of currently visibile filter
+ private int mCurrentColumnIndex = -1; // Column Index of currently visible filter
private List mColumnFilterList; // List of ColumnFilter objects
private bool mAutoCreateFilters = true;
@@ -327,7 +327,7 @@ protected virtual void OnFilteredGridPaint(object sender, DataGridViewCellPainti
}
///
- /// Performs customized column header painting when the popup is visibile.
+ /// Performs customized column header painting when the popup is visible.
///
/// The sender.
/// The instance containing the event data.
diff --git a/CxViewerDgvFilterPopup/FilterPopup/Extensions/DgvDateRangeColumnFilter.cs b/CxViewerDgvFilterPopup/FilterPopup/Extensions/DgvDateRangeColumnFilter.cs
index 9676f0b7..43fad538 100644
--- a/CxViewerDgvFilterPopup/FilterPopup/Extensions/DgvDateRangeColumnFilter.cs
+++ b/CxViewerDgvFilterPopup/FilterPopup/Extensions/DgvDateRangeColumnFilter.cs
@@ -41,14 +41,14 @@ public DgvDateRangeColumnFilter() {
public DateTimePicker DateTimePickerValue2 { get { return dateTimePickerValue2; }}
///
- /// Perform filter initialitazion and raises the FilterInitializing event.
+ /// Perform filter initialization and raises the FilterInitializing event.
///
/// The source of the event.
/// The instance containing the event data.
///
/// When this column filter control is added to the column filters array of the filter manager ,
/// the latter calls the method which, in turn, calls this method.
- /// You can ovverride this method to provide initialization code or you can create an event handler and
+ /// You can override this method to provide initialization code or you can create an event handler and
/// set the Cancel property of event argument to true, to skip standard initialization.
///
protected override void OnFilterInitializing(object sender, CancelEventArgs e) {
diff --git a/CxViewerDgvFilterPopup/FilterPopup/Extensions/DgvMonthYearColumnFilter.cs b/CxViewerDgvFilterPopup/FilterPopup/Extensions/DgvMonthYearColumnFilter.cs
index 27ace0e6..4147cd38 100644
--- a/CxViewerDgvFilterPopup/FilterPopup/Extensions/DgvMonthYearColumnFilter.cs
+++ b/CxViewerDgvFilterPopup/FilterPopup/Extensions/DgvMonthYearColumnFilter.cs
@@ -85,14 +85,14 @@ public DgvMonthYearColumnFilter() {
public ComboBox ComboBoxYear { get { return comboBoxYear; } }
///
- /// Perform filter initialitazion and raises the FilterInitializing event.
+ /// Perform filter initialization and raises the FilterInitializing event.
///
/// The source of the event.
/// The instance containing the event data.
///
/// When this column filter control is added to the column filters array of the filter manager ,
/// the latter calls the method which, in turn, calls this method.
- /// You can ovverride this method to provide initialization code or you can create an event handler and
+ /// You can override this method to provide initialization code or you can create an event handler and
/// set the Cancel property of event argument to true, to skip standard initialization.
///
protected override void OnFilterInitializing(object sender, CancelEventArgs e) {
diff --git a/CxViewerDgvFilterPopup/FilterPopup/Extensions/DgvNumRangeColumnFilter.cs b/CxViewerDgvFilterPopup/FilterPopup/Extensions/DgvNumRangeColumnFilter.cs
index 93e4f0a1..3a175c60 100644
--- a/CxViewerDgvFilterPopup/FilterPopup/Extensions/DgvNumRangeColumnFilter.cs
+++ b/CxViewerDgvFilterPopup/FilterPopup/Extensions/DgvNumRangeColumnFilter.cs
@@ -41,14 +41,14 @@ public DgvNumRangeColumnFilter() {
///
- /// Perform filter initialitazion and raises the FilterInitializing event.
+ /// Perform filter initialization and raises the FilterInitializing event.
///
/// The source of the event.
/// The instance containing the event data.
///
/// When this column filter control is added to the column filters array of the filter manager ,
/// the latter calls the method which, in turn, calls this method.
- /// You can ovverride this method to provide initialization code or you can create an event handler and
+ /// You can override this method to provide initialization code or you can create an event handler and
/// set the Cancel property of event argument to true, to skip standard initialization.
///
protected override void OnFilterInitializing(object sender, CancelEventArgs e) {
diff --git a/CxViewerDgvFilterPopup/FilterPopup/Implementations/DgvCheckBoxColumnFilter.cs b/CxViewerDgvFilterPopup/FilterPopup/Implementations/DgvCheckBoxColumnFilter.cs
index aa031416..cf3034ec 100644
--- a/CxViewerDgvFilterPopup/FilterPopup/Implementations/DgvCheckBoxColumnFilter.cs
+++ b/CxViewerDgvFilterPopup/FilterPopup/Implementations/DgvCheckBoxColumnFilter.cs
@@ -35,14 +35,14 @@ public DgvCheckBoxColumnFilter() {
///
- /// Perform filter initialitazion and raises the FilterInitializing event.
+ /// Perform filter initialization and raises the FilterInitializing event.
///
/// The source of the event.
/// The instance containing the event data.
///
/// When this column filter control is added to the column filters array of the filter manager ,
/// the latter calls the method which, in turn, calls this method.
- /// You can ovverride this method to provide initialization code or you can create an event handler and
+ /// You can override this method to provide initialization code or you can create an event handler and
/// set the Cancel property of event argument to true, to skip standard initialization.
///
protected override void OnFilterInitializing(object sender, CancelEventArgs e) {
diff --git a/CxViewerDgvFilterPopup/FilterPopup/Implementations/DgvComboBoxColumnFilter.cs b/CxViewerDgvFilterPopup/FilterPopup/Implementations/DgvComboBoxColumnFilter.cs
index 0a9ff92f..ee81151e 100644
--- a/CxViewerDgvFilterPopup/FilterPopup/Implementations/DgvComboBoxColumnFilter.cs
+++ b/CxViewerDgvFilterPopup/FilterPopup/Implementations/DgvComboBoxColumnFilter.cs
@@ -42,14 +42,14 @@ public DgvComboBoxColumnFilter() {
///
- /// Perform filter initialitazion and raises the FilterInitializing event.
+ /// Perform filter initialization and raises the FilterInitializing event.
///
/// The source of the event.
/// The instance containing the event data.
///
/// When this column filter control is added to the column filters array of the filter manager ,
/// the latter calls the method which, in turn, calls this method.
- /// You can ovverride this method to provide initialization code or you can create an event handler and
+ /// You can override this method to provide initialization code or you can create an event handler and
/// set the Cancel property of event argument to true, to skip standard initialization.
///
protected override void OnFilterInitializing(object sender, CancelEventArgs e) {
diff --git a/CxViewerDgvFilterPopup/FilterPopup/Implementations/DgvComboBoxImageColumnFilter.cs b/CxViewerDgvFilterPopup/FilterPopup/Implementations/DgvComboBoxImageColumnFilter.cs
index 4ed1104a..e7ced22f 100644
--- a/CxViewerDgvFilterPopup/FilterPopup/Implementations/DgvComboBoxImageColumnFilter.cs
+++ b/CxViewerDgvFilterPopup/FilterPopup/Implementations/DgvComboBoxImageColumnFilter.cs
@@ -37,14 +37,14 @@ public DgvComboBoxImageColumnFilter()
///
- /// Perform filter initialitazion and raises the FilterInitializing event.
+ /// Perform filter initialization and raises the FilterInitializing event.
///
/// The source of the event.
/// The instance containing the event data.
///
/// When this column filter control is added to the column filters array of the filter manager ,
/// the latter calls the method which, in turn, calls this method.
- /// You can ovverride this method to provide initialization code or you can create an event handler and
+ /// You can override this method to provide initialization code or you can create an event handler and
/// set the Cancel property of event argument to true, to skip standard initialization.
///
protected override void OnFilterInitializing(object sender, CancelEventArgs e) {
diff --git a/CxViewerDgvFilterPopup/FilterPopup/Implementations/DgvDateColumnFilter.cs b/CxViewerDgvFilterPopup/FilterPopup/Implementations/DgvDateColumnFilter.cs
index a4cb670a..efa5c802 100644
--- a/CxViewerDgvFilterPopup/FilterPopup/Implementations/DgvDateColumnFilter.cs
+++ b/CxViewerDgvFilterPopup/FilterPopup/Implementations/DgvDateColumnFilter.cs
@@ -36,14 +36,14 @@ public DgvDateColumnFilter() {
///
- /// Perform filter initialitazion and raises the FilterInitializing event.
+ /// Perform filter initialization and raises the FilterInitializing event.
///
/// The source of the event.
/// The instance containing the event data.
///
/// When this column filter control is added to the column filters array of the filter manager ,
/// the latter calls the method which, in turn, calls this method.
- /// You can ovverride this method to provide initialization code or you can create an event handler and
+ /// You can override this method to provide initialization code or you can create an event handler and
/// set the Cancel property of event argument to true, to skip standard initialization.
///
protected override void OnFilterInitializing(object sender, CancelEventArgs e) {
diff --git a/CxViewerDgvFilterPopup/FilterPopup/Implementations/DgvTextBoxColumnFilter.cs b/CxViewerDgvFilterPopup/FilterPopup/Implementations/DgvTextBoxColumnFilter.cs
index 33763dcc..f10930ec 100644
--- a/CxViewerDgvFilterPopup/FilterPopup/Implementations/DgvTextBoxColumnFilter.cs
+++ b/CxViewerDgvFilterPopup/FilterPopup/Implementations/DgvTextBoxColumnFilter.cs
@@ -34,14 +34,14 @@ public DgvTextBoxColumnFilter() {
///
- /// Perform filter initialitazion and raises the FilterInitializing event.
+ /// Perform filter initialization and raises the FilterInitializing event.
///
/// The source of the event.
/// The instance containing the event data.
///
/// When this column filter control is added to the column filters array of the filter manager ,
/// the latter calls the method which, in turn, calls this method.
- /// You can ovverride this method to provide initialization code or you can create an event handler and
+ /// You can override this method to provide initialization code or you can create an event handler and
/// set the Cancel property of event argument to true, to skip standard initialization.
///
protected override void OnFilterInitializing(object sender, CancelEventArgs e) {