Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
IT Security NachrichtenOne URL, Three Different Tricks, (Thu, Sep 24th)(24.09.2026 um 08:25 Uhr)
IT Security NachrichtenGartner: 41 Prozent der CISOs melden Deepfakes(24.09.2026 um 08:04 Uhr)
AI & KI NachrichtenJobstart: Rund die Hälfte erwartet KI-Kenntnisse(24.09.2026 um 08:05 Uhr)
AI & KI NachrichtenIT-Dienstleister im Vergleich 2026 - CHIP(24.09.2026 um 01:15 Uhr)
IT Security NachrichtenGefahren durch Berlins exfiltrierte Verwaltungsdaten - IT&Production(24.09.2026 um 02:51 Uhr)
IT Security NachrichtenWeb, Cloud und Security zusammen denken - Swiss IT Magazine(24.09.2026 um 06:56 Uhr)
IT Security NachrichtenAnzeige KI in der IT-Sicherheit für Pentesting und Resilienz - Golem.de(24.09.2026 um 07:20 Uhr)
IT Security NachrichtenOne URL, Three Different Tricks, (Thu, Sep 24th)(24.09.2026 um 08:25 Uhr)
IT Security NachrichtenGartner: 41 Prozent der CISOs melden Deepfakes(24.09.2026 um 08:04 Uhr)
AI & KI NachrichtenJobstart: Rund die Hälfte erwartet KI-Kenntnisse(24.09.2026 um 08:05 Uhr)
AI & KI NachrichtenIT-Dienstleister im Vergleich 2026 - CHIP(24.09.2026 um 01:15 Uhr)
IT Security NachrichtenGefahren durch Berlins exfiltrierte Verwaltungsdaten - IT&Production(24.09.2026 um 02:51 Uhr)
IT Security NachrichtenWeb, Cloud und Security zusammen denken - Swiss IT Magazine(24.09.2026 um 06:56 Uhr)
IT Security NachrichtenAnzeige KI in der IT-Sicherheit für Pentesting und Resilienz - Golem.de(24.09.2026 um 07:20 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

HarmonyOS NEXT Practical: Sliding Bar

Goal: Implement horizontal and vertical sliding bars Slider slider component, commonly used for quickly adjusting settings such as volume and brightness adjustments in various application scenarios. Knowledge points: SliderOptions object…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

Goal: Implement horizontal and vertical sliding bars



Slider slider component, commonly used for quickly adjusting settings such as volume and brightness adjustments in various application scenarios.



Knowledge points:

SliderOptions object properties

-Value: Current progress value. Default value: Consistent with the value of parameter min. Starting from API version 10, this parameter supports bidirectional variable binding. Value range: [min, max]。 When it is less than min, take min; when it is greater than max, take max.

-Min: Set the minimum value. Default value: 0

-Max: Set the maximum value. Default value: 100. Explanation: In case of min>=max abnormal situation, min takes the default value of 0 and max takes the default value of 100. If the value is not within the range of [min, max], take min or max, take min near min, and take max near max.

-Step: Set the slider sliding step size. Default value: 1. Value range: [0.01, max - min]。 Explanation: If the set step value is less than 0 or greater than the max value, it will be displayed according to the default value.

-Style: Set the slider and slide display style of the slider. Default value: SliderStyle.OutSet

-Direction: Set the sliding direction of the slider to horizontal or vertical. Default value: Axis.Horizontal

-Reverse: Set whether the value range of the slider is reversed. Default value: false。 When the value is true, the horizontal slider slides from right to left, and the vertical slider slides from bottom to top. When the value is false, the horizontal slider slides from left to right and the vertical slider slides from top to bottom



Component Properties




blockColor(value: ResourceColor)






Set the color of the slider. Default value:$ r('sys.color.ohos_id_color_foreground_contrary')

When the slider shape is set to SliderBlockType When DEFAULT, blockColor can be set to the default circular slider color.

When the slider shape is set to SliderBlockType When IMAGE, the slider is not filled, and setting blockColor does not take effect.

When the slider shape is set to SliderBlockType When SHAPE, blockColor can be used to set the fill color for custom shapes.




trackColor(value: ResourceColor | LinearGradient)






Set the background color of the slide rail. Explanation: When setting a gradient color, if the color breakpoint color value is an illegal value or the gradient breakpoint is empty, the gradient color will not have an effect. Default value:$ r('sys.color.ohos_id_color_component_normal')。 The LinearGradient type in this interface is not supported for use in meta services.




selectedColor(value: ResourceColor)






Set the color of the slid part of the slide rail. Default value:$r('sys.color.ohos_id_color_emphasize')




showSteps(value: boolean)






Set whether the current step size scale value is displayed. Display the scale value when the value is true, and do not display the scale value when the value is false. Default value: false



Actual combat:SliderPage




@Entry
@Component
struct SliderPage {
@State outSetValueOne: number = 40
@State vInSetValueOne: number = 40

build() {
Column({ space: 10 }) {
Text('Slider实战')
Text('横向滑动条')
Row() {
Slider({
value: this.outSetValueOne,
min: 0,
max: 100,
style: SliderStyle.OutSet
})
.showTips(true)
.onChange((value: number, mode: SliderChangeMode) => {
this.outSetValueOne = value
console.info('value:' + value + 'mode:' + mode.toString())
})
// toFixed(0)将滑动条返回值处理为整数精度
Text(this.outSetValueOne.toFixed(0)).fontSize(12)
}
.width('80%')

Text('竖向滑动条')
Slider({
value: this.vInSetValueOne,
style: SliderStyle.InSet,
direction: Axis.Vertical,
reverse: true // 竖向的Slider默认是上端是min值,下端是max值,因此想要从下往上滑动,需要设置reverse为true
})
.showTips(true)
.height(300)
.onChange((value: number, mode: SliderChangeMode) => {
this.vInSetValueOne = value
console.info('value:' + value + 'mode:' + mode.toString())
})
}.width('100%')
}
}


SOC Incident Playbook: Remote Code Execution (RCE) Defense
title: Detect Exploitation - HarmonyOS NEXT Practical: Sliding Bar
id: 50d4535a-76bb-43af-97b6-cd4d0be7101f
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-24
logsource:
  category: network_connection
  product: any
detection:
  selection:
      CommandLine|contains:
        - 'exploit'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-24"
        description = "YARA Signature for "
    strings:
        $str = "HarmonyOS NEXT Practical: Slid" ascii wide
    condition:
        any of them
}
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich HarmonyOS NEXT Practical: Sliding Bar.... Basierend auf 368k Vektor-Korrelationen werden sofortige Isolationsmaßnahmen für betroffene Endpunkte empfohlen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
🔗 Semantisch verwandte Zero-Days MariaDB 11.7 VEC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten HarmonyOS NEXT Practical: Sliding Bar

Thematisch verwandte Begriffe: HarmonyOS, NEXT, Practical, Sliding · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-96676 | A vulnerability was identified in Fast FAC1900R 20190827_2.0.2. The impa…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel TTP ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick