728x90 분류 전체보기455 kubernetes command 샘플 command: - /bin/sh - '-c' - 'echo Hello, Kubernetes && sleep 3600' 2025. 1. 11. css tooltips Hover over me This is a tooltip 2024. 11. 21. task 샘플 using System;using System.Collections.Generic;using System.Threading;using System.Threading.Tasks;public class KiwoomApiManager{ private static KiwoomApiManager _instance; private static readonly object _lock = new object(); // 요청에 대한 응답을 기다리는 TaskCompletionSource들을 저장할 사전 private readonly Dictionary> _responseTasks = new Dictionary>(); private const int TimeoutMilliseconds = .. 2024. 11. 6. blazor 새창 열기 및 포커스 줌 설정 // wwwroot/js/childWindow.jsfunction openWindowWithZoomAndFocus(url) { const childWindow = window.open(url, "_blank"); // 자식 창이 열렸는지 확인한 후 포커스와 줌을 설정합니다. if (childWindow) { childWindow.focus(); // 포커스를 자식 창에 맞춥니다. childWindow.onload = () => { childWindow.document.body.style.zoom = "80%"; }; }} builder.Services.AddScoped(); @inject IJSRuntime.. 2024. 10. 30. 이전 1 2 3 4 5 6 7 ··· 114 다음 728x90