コード例 #1
0
        private void button_add14443_decimal_Click(object sender, EventArgs e)
        {
            using (RfidToolForm dialog = new RfidToolForm())
            {
                dialog.Text            = "选择 ISO14443A 读者卡";
                dialog.OkCancelVisible = true;
                dialog.LayoutVertical  = false;
                dialog.AutoCloseDialog = false;
                dialog.ProtocolFilter  = InventoryInfo.ISO14443A;

                // dialog.SelectedPII = auto_select_pii;
                // dialog.AutoSelectCondition = "auto_or_blankPII";
                Program.MainForm.AppInfo.LinkFormState(dialog, "select14443TagDialog_formstate");
                dialog.ShowDialog(this);

                if (dialog.DialogResult == DialogResult.Cancel)
                {
                    return;
                }

                string result = dialog.SelectedID;
                if (result.StartsWith("uid:"))
                {
                    result = result.Substring("uid:".Length);
                }

                // 转换为十进制
                result = HexToDecimal(result);

                // 查重
                if (this.listBox1.Items.IndexOf(result) == -1)
                {
                    this.listBox1.Items.Add(result);
                    this.listBox1.SelectedItem = result;
                }
                else
                {
                    MessageBox.Show(this, $"号码 {result} 已经存在了");
                }
            }
        }
コード例 #2
0
        // 装入以前的标签信息
        // 如果读卡器上有多个标签,则出现对话框让从中选择一个。列表中和右侧 PII 相同的,优先被选定
        // parameters:
        //      strStyle    操作方式
        //                  auto_close_dialog  是否要自动关闭选择对话框。条件是选中了 auto_select_pii 事项
        //                  adjust_right    是否自动调整右侧元素。即,把左侧的锁定状态元素覆盖到右侧。调整前要询问。如果不同意调整,可以放弃,然后改为放一个空白标签并装载保存
        //                  saving  是否为了保存而装载?如果是,有些提示要改变
        // return:
        //      -1  出错
        //      0   放弃装载
        //      1   成功装载
        int LoadOldChip(
            string auto_select_pii,
            string strStyle,
            out string strError)
        {
            strError = "";

            bool auto_close_dialog = StringUtil.IsInList("auto_close_dialog", strStyle);
            bool adjust_right      = StringUtil.IsInList("adjust_right", strStyle);
            bool saving            = StringUtil.IsInList("saving", strStyle);

            try
            {
REDO:
                // 出现对话框让选择一个
                // SelectTagDialog dialog = new SelectTagDialog();
                using (RfidToolForm dialog = new RfidToolForm())
                {
                    dialog.Text                = "选择 RFID 读者卡";
                    dialog.OkCancelVisible     = true;
                    dialog.LayoutVertical      = false;
                    dialog.AutoCloseDialog     = auto_close_dialog;
                    dialog.SelectedPII         = auto_select_pii;
                    dialog.AutoSelectCondition = "auto_or_blankPII";    // 2019/1/30
                    dialog.ProtocolFilter      = InventoryInfo.ISO15693;
                    Program.MainForm.AppInfo.LinkFormState(dialog, "selectTagDialog_formstate");
                    dialog.ShowDialog(this);

                    if (dialog.DialogResult == DialogResult.Cancel)
                    {
                        strError = "放弃装载 RFID 读者卡内容";
                        return(0);
                    }

                    {
                        var old_chip = LogicChipItem.FromTagInfo(dialog.SelectedTag.TagInfo);

                        // 首先检查 typeOfUsage 是否为 8X
                        if (old_chip.IsBlank() == false && IsPatronUsage(old_chip) == false)
                        {
                            strError = "当前 RFID 标签是图书类型,不是读者卡类型。请小心不要弄混这两种类型";
                            string message = $"您所选择的 RFID 标签是图书类型,不是读者卡类型。请小心不要弄混这两种类型。\r\n\r\n是否重新选择?\r\n\r\n[是]重新选择 RFID 读者卡;\r\n[否]将这一种不吻合的 RFID 标签装载进来\r\n[取消]放弃装载";
                            if (saving)
                            {
                                message = $"您所选择的 RFID 标签是图书类型,不是读者卡类型。请小心不要弄混这两种类型。\r\n\r\n是否重新选择?\r\n\r\n[是]重新选择 RFID 读者卡;\r\n[否]将信息覆盖保存到这一种不吻合的 RFID 标签中(危险)\r\n[取消]放弃保存";
                            }

                            DialogResult temp_result = MessageBox.Show(this,
                                                                       message,
                                                                       "RfidPatronCardDialog",
                                                                       MessageBoxButtons.YesNoCancel,
                                                                       MessageBoxIcon.Question,
                                                                       MessageBoxDefaultButton.Button1);
                            if (temp_result == DialogResult.Yes)
                            {
                                goto REDO;
                            }
                            if (temp_result == DialogResult.Cancel)
                            {
                                strError = "放弃装载 RFID 读者卡内容";
                                return(0);
                            }
                            if (saving == false)
                            {
                                MessageBox.Show(this, "警告:您刚装入了一个可疑的读者卡,极有可能不是读者卡而是图书 RFID 标签。待会儿保存读者卡内容的时候,有可能会张冠李戴覆盖了它。保存读者卡内容前,请务必反复仔细检查");
                            }
                        }
                    }

                    if (auto_close_dialog == false
                        // && string.IsNullOrEmpty(auto_select_pii) == false
                        && dialog.SelectedPII != auto_select_pii &&
                        string.IsNullOrEmpty(dialog.SelectedPII) == false
                        )
                    {
                        string message = $"您所选择的读者卡其 PII 为 '{dialog.SelectedPII}',和期待的 '{auto_select_pii}' 不吻合。请小心检查是否正确。\r\n\r\n是否重新选择?\r\n\r\n[是]重新选择 RFID 读者卡;\r\n[否]将这一种不吻合的 RFID 读者卡装载进来\r\n[取消]放弃装载";
                        if (saving)
                        {
                            message = $"您所选择的读者卡其 PII 为 '{dialog.SelectedPII}',和期待的 '{auto_select_pii}' 不吻合。请小心检查是否正确。\r\n\r\n是否重新选择?\r\n\r\n[是]重新选择 RFID 读者卡;\r\n[否]将信息覆盖保存到这一种不吻合的 RFID 读者卡中(危险)\r\n[取消]放弃保存";
                        }

                        DialogResult temp_result = MessageBox.Show(this,
                                                                   message,
                                                                   "RfidPatronCardDialog",
                                                                   MessageBoxButtons.YesNoCancel,
                                                                   MessageBoxIcon.Question,
                                                                   MessageBoxDefaultButton.Button1);
                        if (temp_result == DialogResult.Yes)
                        {
                            goto REDO;
                        }
                        if (temp_result == DialogResult.Cancel)
                        {
                            strError = "放弃装载 RFID 读者卡内容";
                            return(0);
                        }
                        if (saving == false)
                        {
                            MessageBox.Show(this, "警告:您刚装入了一个可疑的读者卡,极有可能不是当前读者记录对应的读者卡。待会儿保存读者卡内容的时候,有可能会张冠李戴覆盖了它。保存读者卡内容前,请务必反复仔细检查");
                        }
                    }

                    var tag_info = dialog.SelectedTag.TagInfo;
                    _tagExisting = dialog.SelectedTag;

                    var chip = LogicChipItem.FromTagInfo(tag_info);
                    this.chipEditor_existing.LogicChipItem = chip;

                    if (adjust_right)
                    {
                        int nRet = Merge(this.chipEditor_existing.LogicChipItem,
                                         this.chipEditor_editing.LogicChipItem,
                                         out strError);
                        if (nRet == -1)
                        {
                            return(-1);
                        }

                        // 让右侧编辑器感受到 readonly 和 text 的变化
                        var save = this.chipEditor_editing.LogicChipItem;
                        this.chipEditor_editing.LogicChipItem = null;
                        this.chipEditor_editing.LogicChipItem = save;
                    }

                    return(1);
                }
            }
            catch (Exception ex)
            {
                strError = "出现异常: " + ex.Message;
                return(-1);
            }
        }
コード例 #3
0
        // 装入以前的标签信息
        // 如果读卡器上有多个标签,则出现对话框让从中选择一个。列表中和右侧 PII 相同的,优先被选定
        // parameters:
        //      strStyle    操作方式
        //                  auto_close_dialog  是否要自动关闭选择对话框。条件是选中了 auto_select_pii 事项
        //                  adjust_right    是否自动调整右侧元素。即,把左侧的锁定状态元素覆盖到右侧。调整前要询问。如果不同意调整,可以放弃,然后改为放一个空白标签并装载保存
        //                  saving  是否为了保存而装载?如果是,有些提示要改变
        // return:
        //      -1  出错
        //      0   放弃装载
        //      1   成功装载
        int LoadOldChip(
            string auto_select_pii,
            string strStyle,
#if NO
            bool auto_close_dialog,
            bool adjust_right,
#endif
            out string strError)
        {
            strError = "";

            bool auto_close_dialog = StringUtil.IsInList("auto_close_dialog", strStyle);
            bool adjust_right      = StringUtil.IsInList("adjust_right", strStyle);
            bool saving            = StringUtil.IsInList("saving", strStyle);

            try
            {
REDO:
                // 出现对话框让选择一个
                // SelectTagDialog dialog = new SelectTagDialog();
                RfidToolForm dialog        = new RfidToolForm();
                dialog.Text                = "选择 RFID 标签";
                dialog.OkCancelVisible     = true;
                dialog.LayoutVertical      = false;
                dialog.AutoCloseDialog     = auto_close_dialog;
                dialog.SelectedPII         = auto_select_pii;
                dialog.AutoSelectCondition = "auto_or_blankPII";    // 2019/1/30
                Program.MainForm.AppInfo.LinkFormState(dialog, "selectTagDialog_formstate");
                dialog.ShowDialog(this);

                if (dialog.DialogResult == DialogResult.Cancel)
                {
                    strError = "放弃装载 RFID 标签内容";
                    return(0);
                }

                if (auto_close_dialog == false
                    // && string.IsNullOrEmpty(auto_select_pii) == false
                    && dialog.SelectedPII != auto_select_pii &&
                    string.IsNullOrEmpty(dialog.SelectedPII) == false
                    )
                {
                    string message = $"您所选择的标签其 PII 为 '{dialog.SelectedPII}',和期待的 '{auto_select_pii}' 不吻合。请小心检查是否正确。\r\n\r\n是否重新选择?\r\n\r\n[是]重新选择 RFID 标签;\r\n[否]将这一种不吻合的 RFID 标签装载进来\r\n[取消]放弃装载";
                    if (saving)
                    {
                        message = $"您所选择的标签其 PII 为 '{dialog.SelectedPII}',和期待的 '{auto_select_pii}' 不吻合。请小心检查是否正确。\r\n\r\n是否重新选择?\r\n\r\n[是]重新选择 RFID 标签;\r\n[否]将信息覆盖保存到这一种不吻合的 RFID 标签中(危险)\r\n[取消]放弃保存";
                    }

                    DialogResult temp_result = MessageBox.Show(this,
                                                               message,
                                                               "EntityEditForm",
                                                               MessageBoxButtons.YesNoCancel,
                                                               MessageBoxIcon.Question,
                                                               MessageBoxDefaultButton.Button1);
                    if (temp_result == DialogResult.Yes)
                    {
                        goto REDO;
                    }
                    if (temp_result == DialogResult.Cancel)
                    {
                        strError = "放弃装载 RFID 标签内容";
                        return(0);
                    }
                    if (saving == false)
                    {
                        MessageBox.Show(this, "警告:您刚装入了一个可疑的标签,极有可能不是当前册对应的标签。待会儿保存标签内容的时候,有可能会张冠李戴覆盖了它。保存标签内容前,请务必反复仔细检查");
                    }
                }

                var tag_info = dialog.SelectedTag.TagInfo;
                _tagExisting = dialog.SelectedTag;

                var chip = LogicChipItem.FromTagInfo(tag_info);
                this.chipEditor_existing.LogicChipItem = chip;

                if (adjust_right)
                {
                    int nRet = Merge(this.chipEditor_existing.LogicChipItem,
                                     this.chipEditor_editing.LogicChipItem,
                                     out strError);
                    if (nRet == -1)
                    {
                        return(-1);
                    }

                    // 让右侧编辑器感受到 readonly 和 text 的变化
                    var save = this.chipEditor_editing.LogicChipItem;
                    this.chipEditor_editing.LogicChipItem = null;
                    this.chipEditor_editing.LogicChipItem = save;
                }

                return(1);
            }
            catch (Exception ex)
            {
                strError = "出现异常: " + ex.Message;
                return(-1);
            }
        }