小编Grz*_* G.的帖子

Xamarin Forms - 否定bool绑定值

我正在学习xamarin形式和mvvm模式.我想知道,是否有可能否定绑定bool值.我的意思是:

我有,让我们说使用isVisible Binding进入:

<Entry
    x:Name="TextEntry"
    IsVisible="{Binding IsVisibleEntry}"
/>
Run Code Online (Sandbox Code Playgroud)

并且Label我想隐藏时TextEntry可见.

<Label x:Name="MainLabel" 
       isVisible="!{Binding IsVisibleEntry}"/> //ofc it is not working
Run Code Online (Sandbox Code Playgroud)

是否可以不在ViewModel中为MainLabel创建新变量?

c# mvvm xamarin xamarin.forms

19
推荐指数
3
解决办法
7019
查看次数

将数据从输入传递到vue的功能

我想从输入传递数据:

<input
  id="txtName" 
  type="text"
  v-on:keyup.enter="addMessage(/* THIS FIELD VALUE */)"
/>
Run Code Online (Sandbox Code Playgroud)

方法:

methods: {
  addMessage(name) {
    //stuff
  }
}
Run Code Online (Sandbox Code Playgroud)

我尝试使用thisthis.value作为参数,但它不起作用.

我该怎么解决这个问题?

parameter-passing vue.js

13
推荐指数
2
解决办法
2万
查看次数

xamarin.android接收器出现BOOT_COMPLETED错误

我正在尝试创建一个以设备启动开始的简单服务.事情是设备返回消息"不幸的是,[app_name]已停止."

我几个小时都在努力解决这个问题,寻找错误,但这太简单了.希望,你们可以帮我解决这个问题.

这是我的代码:

AndroidManifest.xml中

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>

<application android:allowBackup="true" android:label="@string/app_name">


    <receiver android:name=".StartReceiver">
          <intent-filter>
              <action android:name="android.intent.action.BOOT_COMPLETED"/>
          </intent-filter>
    </receiver>

  <service android:name=".PService" />
</application>
Run Code Online (Sandbox Code Playgroud)

StartReceiver.cs

[BroadcastReceiver]
[IntentFilter(new[] { Intent.ActionBootCompleted })]
public class StartReceiver : BroadcastReceiver
{
    public override void OnReceive(Context context, Intent intent)
    {
        Intent startIntent = new Intent(context, typeof(PService));
        context.StartService(startIntent);
    }
}
Run Code Online (Sandbox Code Playgroud)

最后是PService.cs

[Service]
    public class PService : Service
    {
        public override void OnCreate()
        {
            base.OnCreate();
        }

        public override IBinder OnBind(Intent intent)
        {
            return null;
        }


        public override StartCommandResult OnStartCommand(Intent intent, StartCommandFlags flags, …
Run Code Online (Sandbox Code Playgroud)

c# service android visual-studio xamarin

4
推荐指数
1
解决办法
1244
查看次数

Firebase项目错误TypeError:targetNames.join不是函数

您好我正在关注此指南:https://codelabs.developers.google.com/codelabs/cloud-firebase-chat/#2 当我想'firebase deploy'时,我收到此错误:

TypeError: targetNames.join is not a function
at deploy (C:\Users\grzeg\AppData\Roaming\npm\node_modules\firebase-tools\lib\deploy\index.js:68:57)
at Command._action (C:\Users\grzeg\AppData\Roaming\npm\node_modules\firebase-tools\commands\deploy.js:47:12)
at C:\Users\grzeg\AppData\Roaming\npm\node_modules\firebase-tools\lib\command.js:176:29
at tryCatch (C:\Users\grzeg\AppData\Roaming\npm\node_modules\firebase-tools\node_modules\rsvp\dist\rsvp.js:539:12)
at invokeCallback (C:\Users\grzeg\AppData\Roaming\npm\node_modules\firebase-tools\node_modules\rsvp\dist\rsvp.js:554:13)
at publish (C:\Users\grzeg\AppData\Roaming\npm\node_modules\firebase-tools\node_modules\rsvp\dist\rsvp.js:522:7)
at flush (C:\Users\grzeg\AppData\Roaming\npm\node_modules\firebase-tools\node_modules\rsvp\dist\rsvp.js:2414:5)
at _combinedTickCallback (internal/process/next_tick.js:73:7)
at process._tickCallback (internal/process/next_tick.js:104:9
Run Code Online (Sandbox Code Playgroud)

我该如何解决?

firebase firebase-tools firebase-cloud-messaging

3
推荐指数
1
解决办法
1039
查看次数

Xamarin.forms-如何检测视图模型内条目中的输入按下?

我正在开发一个基于 mvvm 模式的 xamarin 表单应用程序。我正在寻找方法来检测用户是否键入 Enter 按钮。事件应该从 viewModel 类调用命令。

你们能分享一些技巧吗?;)

c# mvvm xamarin xamarin.forms

3
推荐指数
1
解决办法
1万
查看次数