From fe6a3cad0d7078606739edb5ecfc259447aa663d Mon Sep 17 00:00:00 2001 From: mkno1412222222 <12436341+mkno1412222222@user.noreply.gitee.com> Date: Mon, 8 Sep 2025 10:46:12 +0000 Subject: [PATCH 1/5] =?UTF-8?q?update=20ArkUI/entry/src/main/ets/pages/Set?= =?UTF-8?q?WindowPrivacyModeInPage.ets.=201Cause=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E4=B8=BACause?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: mkno1412222222 <12436341+mkno1412222222@user.noreply.gitee.com> --- ArkUI/entry/src/main/ets/pages/SetWindowPrivacyModeInPage.ets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArkUI/entry/src/main/ets/pages/SetWindowPrivacyModeInPage.ets b/ArkUI/entry/src/main/ets/pages/SetWindowPrivacyModeInPage.ets index 1f95bef..2c9e738 100644 --- a/ArkUI/entry/src/main/ets/pages/SetWindowPrivacyModeInPage.ets +++ b/ArkUI/entry/src/main/ets/pages/SetWindowPrivacyModeInPage.ets @@ -28,7 +28,7 @@ class windowUtils { lastWindow.setWindowPrivacyMode(isFlag, (err: BusinessError) => { const errCode: number = err.code; if (errCode) { - console.error('Failed to set the window to privacy mode. 1Cause:' + JSON.stringify(err)); + console.error('Failed to set the window to privacy mode. Cause:' + JSON.stringify(err)); return; } console.info('Succeeded in setting the window to privacy mode.'); -- Gitee From 09634085fbf6d185ee29a89c696082fbc1e1ac6c Mon Sep 17 00:00:00 2001 From: mkno1412222222 <12436341+mkno1412222222@user.noreply.gitee.com> Date: Mon, 8 Sep 2025 10:49:15 +0000 Subject: [PATCH 2/5] =?UTF-8?q?update=20ArkUI/entry/src/main/ets/pages/Not?= =?UTF-8?q?RespondToParentComponentOnTouch.ets.=20=E5=8E=BB=E6=8E=89?= =?UTF-8?q?=E9=87=8D=E5=A4=8D=E7=9A=84.width(100)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: mkno1412222222 <12436341+mkno1412222222@user.noreply.gitee.com> --- .../src/main/ets/pages/NotRespondToParentComponentOnTouch.ets | 1 - 1 file changed, 1 deletion(-) diff --git a/ArkUI/entry/src/main/ets/pages/NotRespondToParentComponentOnTouch.ets b/ArkUI/entry/src/main/ets/pages/NotRespondToParentComponentOnTouch.ets index a63bcf3..b76a8a9 100644 --- a/ArkUI/entry/src/main/ets/pages/NotRespondToParentComponentOnTouch.ets +++ b/ArkUI/entry/src/main/ets/pages/NotRespondToParentComponentOnTouch.ets @@ -25,7 +25,6 @@ struct Index { build() { Row() { Button('Click on me') - .width(100) .width(100) .backgroundColor('#f00') .onClick(() => { -- Gitee From 5505f36470f569e17807b5bc9201da746ac11fce Mon Sep 17 00:00:00 2001 From: mkno1412222222 <12436341+mkno1412222222@user.noreply.gitee.com> Date: Mon, 8 Sep 2025 10:51:32 +0000 Subject: [PATCH 3/5] =?UTF-8?q?update=20ArkUI/entry/src/main/ets/entryabil?= =?UTF-8?q?ity/EntryAbilityForWindow.ets.=20=E4=B8=AD=E6=96=87=E5=88=86?= =?UTF-8?q?=E5=8F=B7=E6=94=B9=E4=B8=BA=E8=8B=B1=E6=96=87=E9=80=97=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: mkno1412222222 <12436341+mkno1412222222@user.noreply.gitee.com> --- ArkUI/entry/src/main/ets/entryability/EntryAbilityForWindow.ets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArkUI/entry/src/main/ets/entryability/EntryAbilityForWindow.ets b/ArkUI/entry/src/main/ets/entryability/EntryAbilityForWindow.ets index d5c952e..a8684cf 100644 --- a/ArkUI/entry/src/main/ets/entryability/EntryAbilityForWindow.ets +++ b/ArkUI/entry/src/main/ets/entryability/EntryAbilityForWindow.ets @@ -47,7 +47,7 @@ export default class EntryAbility extends UIAbility { //Get window properties let properties = windowClass.getWindowProperties(); let rect = properties.windowRect; - //rect.width: Window Width;rect.height: Window height + //rect.width: Window Width, rect.height: Window height } catch (exception) { console.error('Failed to obtain the window properties. Cause: ' + JSON.stringify(exception)); } -- Gitee From ccadea94a165233d8a3504552208665135551ce0 Mon Sep 17 00:00:00 2001 From: mkno1412222222 <12436341+mkno1412222222@user.noreply.gitee.com> Date: Tue, 9 Sep 2025 01:02:13 +0000 Subject: [PATCH 4/5] =?UTF-8?q?update=20ArkUI/entry/src/main/ets/pages/Ent?= =?UTF-8?q?erProhibitedPromptPlanOne.ets.=20=E4=B8=AD=E6=96=87=E5=86=85?= =?UTF-8?q?=E5=AE=B9=E6=94=B9=E4=B8=BA=E8=8B=B1=E6=96=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: mkno1412222222 <12436341+mkno1412222222@user.noreply.gitee.com> --- ArkUI/entry/src/main/ets/pages/EnterProhibitedPromptPlanOne.ets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArkUI/entry/src/main/ets/pages/EnterProhibitedPromptPlanOne.ets b/ArkUI/entry/src/main/ets/pages/EnterProhibitedPromptPlanOne.ets index 8974e81..978c1f4 100644 --- a/ArkUI/entry/src/main/ets/pages/EnterProhibitedPromptPlanOne.ets +++ b/ArkUI/entry/src/main/ets/pages/EnterProhibitedPromptPlanOne.ets @@ -24,7 +24,7 @@ struct TextAreaExample { @State text: string = 'TextArea editMenuOptions'; onCreateMenu(menuItems: Array) { - menuItems = menuItems.filter((item) => item.content !== '拍照输入'); // Can also choose to disable other menu options such as "Aelect All". + menuItems = menuItems.filter((item) => item.content !== 'Photo Input'); // Can also choose to disable other menu options such as "Aelect All". return menuItems; } -- Gitee From 7156ca1a50c5b80408335a57809376915f6060c2 Mon Sep 17 00:00:00 2001 From: mkno1412222222 <12436341+mkno1412222222@user.noreply.gitee.com> Date: Tue, 9 Sep 2025 01:05:28 +0000 Subject: [PATCH 5/5] =?UTF-8?q?update=20ArkUI/entry/src/main/ets/pages/Ent?= =?UTF-8?q?erProhibitedPromptPlanTwo.ets.=20=E4=B8=AD=E6=96=87=E5=86=85?= =?UTF-8?q?=E5=AE=B9=E6=94=B9=E4=B8=BA=E8=8B=B1=E6=96=87=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: mkno1412222222 <12436341+mkno1412222222@user.noreply.gitee.com> --- .../entry/src/main/ets/pages/EnterProhibitedPromptPlanTwo.ets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ArkUI/entry/src/main/ets/pages/EnterProhibitedPromptPlanTwo.ets b/ArkUI/entry/src/main/ets/pages/EnterProhibitedPromptPlanTwo.ets index 895eba4..27d56bb 100644 --- a/ArkUI/entry/src/main/ets/pages/EnterProhibitedPromptPlanTwo.ets +++ b/ArkUI/entry/src/main/ets/pages/EnterProhibitedPromptPlanTwo.ets @@ -25,12 +25,12 @@ struct Index { build() { Column() { - Text(`输入的内容:${this.message}`) + Text(`The input content:${this.message}`) .margin({ top: 100, bottom: 30 }) - TextInput({ placeholder: '请输入内容' }) + TextInput({ placeholder: 'Please enter the content' }) .borderRadius(0) .onChange((value: string) => { this.message = value; -- Gitee