小编Jar*_*tte的帖子

我可以在同一个活动中使用兼容的操作栏和片段吗?

好的,我一直在扩展自己的活动

extends ActionBarActivity
Run Code Online (Sandbox Code Playgroud)

我的主菜单页面

extends FragmentActivity
Run Code Online (Sandbox Code Playgroud)

当我改变它以扩展ActionBarActivity所以我可以在主菜单上看到我的操作栏标题时,它会抛出并给出"Error Inflating Class Fragment"错误.

有没有办法解决?

android

19
推荐指数
1
解决办法
9763
查看次数

在VB.NET中构建REST服务的教程?

我无法弄清楚如何为VB.NET构建REST API Web服务.我在互联网上找不到任何教程,微软模板只有C#.

任何人都有任何可以帮助我的链接?

.net vb.net rest wcf web-services

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

Android中的星期和时间选择器,用于重复发生的事件

我想创建一个控件,允许用户在我的Android活动中选择一周中的某一天(星期一)和一天中的某个时间(下午1:00).没找到任何好帖子?

android android-timepicker

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

Windows Phone 7,登录屏幕重定向和.exit的案例?

我知道这已被讨论过,但我想提出我的情况....

  1. 我的应用程序中的起始页面是login.xaml.用户登录,用户名和密码通过我的WCF服务进行身份验证,用户名保存在独立存储中,然后用户被重定向到mainpage.xaml.

  2. 当用户启动我的应用程序,并且他们已经在隔离存储中保存了用户名时,会将其重定向到mainpage.xaml

  3. 如果用户从mainpage.xaml点击"返回"硬按钮,则会重定向到登录屏幕,登录屏幕又将其重定向回mainpage.xaml,因为他们已经保存了本地用户名.这导致我的应用程序目前无法通过认证,因为用户无法点击"返回"按钮从mainpage.xaml退出应用程序.

我的直觉是覆盖mainpage.xaml中的BackKeyPress并以某种方式退出应用程序.通过阅读其他帖子,我可以看到此方法不可用.我的第二个想法是以某种方式在app.xaml.cs页面中存储一个属性,告诉应用程序在加载登录页面并且该属性设置为true时退出,但这看起来有点像hacky ....

这里有什么想法?

使用的更新解决方案:

最终工作的是使登录页面成为mainpage.xaml中的一个枢轴项.当用户在未登录的情况下打开应用程序时,当前选定的数据透视表项将更改为登录数据透视表项.如果用户打开了应用程序并且已登录,则会选择正常的数据透视表项.

c# silverlight windows-phone-7

5
推荐指数
1
解决办法
3625
查看次数

如何在多个ASP.NET请求中更新EF中的实体而不再检索它?

听起来很简单吧?这是场景......

Private dbQuery As New ReefEntities

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
    If Not Page.IsPostBack Then
        CurrentCoral = (From c In dbQuery.Corals Where c.CoralID = intCoralID).FirstOrDefault
       txtCommonName.Text = CurrentCoral.CommonName
    End If
End Sub

Protected Sub btnSave_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnSave.Click
    'how do I access the coral from the page load to update it?
   CurrentCoral.CommonName = strName
   dbQuery.SaveChanges()
End Sub
Run Code Online (Sandbox Code Playgroud)

我不想重新查询我的结果,我想从页面加载更新查询然后保存更改,对吧?如何访问该原始对象以进行更新?

linq vb.net asp.net entity-framework

5
推荐指数
1
解决办法
517
查看次数

显示MessageBox show方法中的错误列表

我正试图找出一种方法,使用MessageBox.Show在我的应用程序中显示验证错误列表.到目前为止我有这个:

    private bool FormIsValid()
    {
        bool isValid = true;
        List<string> strErrors = new List<string>();

        if (!(txtFirstName.Text.Length > 1) || !(txtLastName.Text.Length > 1))
        {
            strErrors.Add("You must enter a first and last name.");
            isValid = false;
        }
        if (!txtEmail.Text.Contains("@") || !txtEmail.Text.Contains(".") || !(txtEmail.Text.Length > 5))
        {
            strErrors.Add("You must enter a valid email address.");
            isValid = false;
        }
        if (!(txtUsername.Text.Length > 7) || !(pbPassword.Password.Length > 7) || !ContainsNumberAndLetter(txtUsername.Text) || !ContainsNumberAndLetter(pbPassword.Password))
        {
            strErrors.Add("Your username and password most both contain at least 8 characters and …
Run Code Online (Sandbox Code Playgroud)

c#

2
推荐指数
1
解决办法
372
查看次数

在 Kotlin 中退出 onClickListener

我有一个按钮单击条件,如果满足条件,我想退出侦听器。退出方法的正确方法是什么?返回似乎不起作用..

btnApplyPayment.setOnClickListener {
    if (isFloat(strAmount))            
       //exit here
Run Code Online (Sandbox Code Playgroud)

kotlin

2
推荐指数
1
解决办法
1060
查看次数

Windows Phone 7如何在枢轴项之间切换时删除"口吃"

当切换到加载数据的枢轴项时,我在从一个项切换到另一个项时遇到了断断续续的问题.我已经将数据加载分离到一个单独的线程,这有帮助,但我仍然遇到一些不好的表现....想知道你们是否有任何想法....

这是枢轴项目

<Grid x:Name="LayoutRoot" Background="Transparent">

    <!--Pivot control-->
    <controls:Pivot Name="panCorals" Title="Corals" Foreground="#01487e" 
        SelectionChanged="panCorals_SelectionChanged">

        <controls:Pivot.Background>
            <ImageBrush ImageSource="PivotBackground.png"/>
        </controls:Pivot.Background>

        <!--Search Corals-->
        <controls:PivotItem Header="Search" Foreground="#01487e">

            <Grid>

                <toolkit:PerformanceProgressBar Name="SearchCoralsProgressBar" HorizontalAlignment="Left" 
                        VerticalAlignment="Top" Width="466" 
                        IsEnabled="{Binding IsSearchLoading}" IsIndeterminate="{Binding IsSearchLoading}" />

                <StackPanel>
                    <TextBox Name="txtSearchTerm" KeyDown="txtSearchTerm_KeyDown" />
                    <ListBox Name="lbSearchCorals" Margin="0,0,-12,0" ItemsSource="{Binding SearchCorals}" 
                         SelectionChanged="lbSearchCorals_SelectionChanged">
                        <ListBox.ItemTemplate>
                            <DataTemplate>
                                <StackPanel Orientation="Horizontal" Margin="0,0,0,17">
                                    <Image Source="{Binding MainImageURI}" Height="100" Width="100" Margin="12,0,9,0" />
                                    <StackPanel Width="311">
                                        <TextBlock Text="{Binding CommonName}" Foreground="#112d42"  TextWrapping="NoWrap"  Style="{StaticResource PhoneTextTitle2Style}"/>
                                        <TextBlock Text="{Binding ScientificName}" Foreground="#112d42" TextWrapping="Wrap" Margin="12,-6,12,0" Style="{StaticResource PhoneTextSubtleStyle}"/>
                                    </StackPanel>
                                </StackPanel>
                            </DataTemplate>
                        </ListBox.ItemTemplate>
                    </ListBox>
                </StackPanel>
            </Grid>

        </controls:PivotItem> …
Run Code Online (Sandbox Code Playgroud)

c# windows silverlight windows-phone-7

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

Windows Phone 7如何在"pin to start"菜单图标上更改文本大小

有没有办法让清单中的文字更小?我的"标题"正在运行图标的结尾....

 <Tokens>
  <PrimaryToken TokenID="MyVirtualHealthCheckToken" TaskName="_default">

    <TemplateType5>
      <BackgroundImageURI IsRelative="true" IsResource="false">vhcBackground.png</BackgroundImageURI>
      <Count>0</Count>
      <Title>MyVirtualHealthCheck</Title>
    </TemplateType5>

  </PrimaryToken>
</Tokens>
Run Code Online (Sandbox Code Playgroud)

c# silverlight windows-phone-7

0
推荐指数
1
解决办法
574
查看次数