Beispiel #1
0
        public void PasteRowCommand()
        {
            try
            {
                MenuItemCodeColumnMetaDataList.Sort(delegate(ColumnMetaData c1, ColumnMetaData c2)
                                                    { return(c1.Order.CompareTo(c2.Order)); });

                char[] rowSplitter    = { '\r', '\n' };
                char[] columnSplitter = { '\t' };
                //get the text from clipboard
                IDataObject dataInClipboard   = Clipboard.GetDataObject();
                string      stringInClipboard = (string)dataInClipboard.GetData(DataFormats.Text);
                //split it into rows...
                string[] rowsInClipboard = stringInClipboard.Split(rowSplitter, StringSplitOptions.RemoveEmptyEntries);

                foreach (string row in rowsInClipboard)
                {
                    NewMenuItemCodeCommand(""); //this will generate a new itemCode and set it as the selected itemCode...
                    //split row into cell values
                    string[] valuesInRow = row.Split(columnSplitter);
                    int      i           = 0;
                    foreach (string columnValue in valuesInRow)
                    {
                        SelectedMenuItemCode.SetPropertyValue(MenuItemCodeColumnMetaDataList[i].Name, columnValue);
                        i++;
                    }
                }
            }
            catch (Exception ex)
            {
                NotifyMessage(ex.InnerException.ToString());
            }
        }
Beispiel #2
0
        private void SelectedMenuItemCode_PropertyChanged(object sender, PropertyChangedEventArgs e)
        {//these properties are not to be persisted we will igore them...
            if (e.PropertyName == "IsSelected" ||
                e.PropertyName == "IsExpanded" ||
                e.PropertyName == "IsValid" ||
                e.PropertyName == "NotValidMessage" ||
                e.PropertyName == "LastModifiedBy" ||
                e.PropertyName == "LastModifiedByDate")
            {
                return;
            }

            //Key ID Logic...
            if (e.PropertyName == "MenuItemCodeID")
            {//make sure it is has changed...
                if (SelectedMenuItemCodeMirror.MenuItemCodeID != SelectedMenuItemCode.MenuItemCodeID)
                {
                    //if their are no records it is a key change
                    if (MenuItemCodeList != null && MenuItemCodeList.Count == 0 &&
                        SelectedMenuItemCode != null && !string.IsNullOrEmpty(SelectedMenuItemCode.MenuItemCodeID))
                    {
                        ChangeKeyLogic();
                        return;
                    }

                    EntityStates entityState = GetMenuItemCodeState(SelectedMenuItemCode);

                    if (entityState == EntityStates.Unchanged ||
                        entityState == EntityStates.Modified)
                    {                             //once a key is added it can not be modified...
                        if (Dirty && AllowCommit) //dirty record exists ask if save is required...
                        {
                            NotifySaveRequired("Do you want to save changes?", _saveRequiredResultActions.ChangeKeyLogic);
                        }
                        else
                        {
                            ChangeKeyLogic();
                        }

                        return;
                    }
                }
            }//end KeyID logic...

            object propertyChangedValue = SelectedMenuItemCode.GetPropertyValue(e.PropertyName);
            object prevPropertyValue    = SelectedMenuItemCodeMirror.GetPropertyValue(e.PropertyName);
            string propertyCode         = SelectedMenuItemCode.GetPropertyCode(e.PropertyName);
            //in some instances the value is not really changing but yet it still is tripping property change..
            //This will ensure that the field has physically been modified...
            //As well when we revert back it constitutes a property change but they will be = and it will bypass the logic...
            bool objectsAreEqual;

            if (propertyChangedValue == null)
            {
                if (prevPropertyValue == null)//both values are null
                {
                    objectsAreEqual = true;
                }
                else//only one value is null
                {
                    objectsAreEqual = false;
                }
            }
            else
            {
                if (prevPropertyValue == null)//only one value is null
                {
                    objectsAreEqual = false;
                }
                else //both values are not null use .Equals...
                {
                    objectsAreEqual = propertyChangedValue.Equals(prevPropertyValue);
                }
            }
            if (!objectsAreEqual)
            {
                //Here we do property change validation if false is returned we will reset the value
                //Back to its mirrored value and return out of the property change w/o updating the repository...
                if (MenuItemCodePropertyChangeIsValid(e.PropertyName, propertyChangedValue, prevPropertyValue, propertyCode))
                {
                    Update(SelectedMenuItemCode);
                    SelectedMenuItemCodeMirror.SetPropertyValue(e.PropertyName, propertyChangedValue);
                    SelectedMenuItemCodeMirror.IsValid         = SelectedMenuItemCode.IsValid;
                    SelectedMenuItemCodeMirror.IsExpanded      = SelectedMenuItemCode.IsExpanded;
                    SelectedMenuItemCodeMirror.NotValidMessage = SelectedMenuItemCode.NotValidMessage;
                }
                else//revert back to its previous value...
                {
                    SelectedMenuItemCode.SetPropertyValue(e.PropertyName, prevPropertyValue);
                    SelectedMenuItemCode.IsValid         = SelectedMenuItemCodeMirror.IsValid;
                    SelectedMenuItemCode.IsExpanded      = SelectedMenuItemCodeMirror.IsExpanded;
                    SelectedMenuItemCode.NotValidMessage = SelectedMenuItemCodeMirror.NotValidMessage;
                }
            }
        }